This file is indexed.

/usr/share/axiom-20120501/input/leg.input is in axiom-test 20120501-8.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
)set break resume
)spool leg.output
)set message test on
)set message auto off
)clear all

--S 1 of 4
p(n | n=0) == 1
--R 
--R                                                                   Type: Void
--E 1

--S 2 of 4
p(n | n=1) == x
--R 
--R                                                                   Type: Void
--E 2

--S 3 of 4
p(n | n>1) == ((2*n-1)*x*p(n-1)-(n-1)*p(n-2))/n
--R 
--R                                                                   Type: Void
--E 3

--S 4 of 4
p 3
--R 
--R   Compiling function p with type Integer -> Polynomial(Fraction(
--R      Integer)) 
--R   Compiling function p as a recurrence relation.
--R
--R        5  3   3
--R   (4)  - x  - - x
--R        2      2
--R                                          Type: Polynomial(Fraction(Integer))
--E 4
)spool 
)lisp (bye)