OFFSET
0,3
COMMENTS
The program confirms that the "dip" in magnitude near a(15) is correct. - R. J. Mathar, Oct 31 2006
REFERENCES
Bruce C. Berndt, Ramanujan's Notebooks Part III, Springer-Verlag, 1991, see p. 92, Eq. 2.5.
LINKS
Amiram Eldar, Table of n, a(n) for n = 0..350
EXAMPLE
Fractions begin with 1/16, -1/3072, 7/1769472, -65/1019215872, 695/587068342272, -8081/338151365148672, 33101/64925062108545024, -422987/37396835774521933824, 5564765/21540577406124633882624, ...
MAPLE
A051550 := proc(n) s := taylor( 1/(10+sqrt(36+x)), x=0, n+1) ; coeftayl(s, x=0, n) ; end: for n from 0 to 30 do printf("%a, ", numer(A051550(n))) ; end: # R. J. Mathar, Oct 31 2006
MATHEMATICA
CoefficientList[Series[1/(10+Sqrt[36+x]), {x, 0, 20}], x]//Numerator (* Harvey P. Dale, Dec 16 2020 *)
CROSSREFS
KEYWORD
sign,frac,changed
AUTHOR
STATUS
approved