login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A075820 Coefficients of power series generated by the continued fraction-like form: A(x) = 1/(1 - x/sqrt(1 - 4x/cube-root(1 - 9x/4th-root(1 - 16x/5th-root(1 - 25x/... /n-th-root(1 - (n^2)x/...)))))), where n-th-root(z)=z^(1/n). 3
1, 1, 3, 17, 151, 1901, 31841, 679243, 17873349, 566127595, 21172659297, 920475938637, 45922819496273, 2600893043805459, 165687190863751905, 11778064492639412479, 927828923151187295125, 80505341430961590290171, 7652425565871036374257731, 793045506373759916564428397 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
A(x) = F(0,x) where F(0,x) = 1/(1 - x*F(1,x)), F(1,x) = 1/(1 - 4*x*F(2,x))^(1/2), F(2,x) = 1/(1 - 9*x/F(3,x))^(1/3), F(3,x) = 1/(1 - 16*x/F(4,x))^(1/4), ..., so that F(n,x) = 1/(1 - (n+1)^2*x*F(n+1,x))^(1/(n+1)) for n>=0.
EXAMPLE
G.f.: A(x) = 1 + x + 3*x^2 + 17*x^3 + 151*x^4 + 1901*x^5 + 31841*x^6 +...
Define F(n,x) with F(0,x) = A(x) where for n>0 we have
F(n,x) = (1 - 1/F(n-1,x)^n)/(n^2*x) = 1/(1 - (n+1)^2*x*F(n+1,x))^(1/(n+1)),
then
F(1,x) = 1 + 2*x + 12*x^2 + 116*x^3 + 1564*x^4 + 27522*x^5 +...
F(2,x) = 1 + 3*x + 30*x^2 + 450*x^3 + 8805*x^4 + 212559*x^5 +...
F(3,x) = 1 + 4*x + 60*x^2 + 1300*x^3 + 35300*x^4 + 1139704*x^5 +...
F(4,x) = 1 + 5*x + 105*x^2 + 3115*x^3 + 112910*x^4 + 4747680*x^5 +...
F(5,x) = 1 + 6*x + 168*x^2 + 6552*x^3 + 306936*x^4 + 16398900*x^5 +...
F(6,x) = 1 + 7*x + 252*x^2 + 12516*x^3 + 737814*x^4 + 49006986*x^5 +...
F(7,x) = 1 + 8*x + 360*x^2 + 22200*x^3 + 1610760*x^4 + 130516488*x^5 +...
...
F(1,x)^2 = 1 + 4*x + 28*x^2 + 280*x^3 + 3736*x^4 + 64084*x^5 +...
F(2,x)^3 = 1 + 9*x + 117*x^2 + 1917*x^3 + 38025*x^4 + 897417*x^5 +...
F(3,x)^4 = 1 + 16*x + 336*x^2 + 8336*x^3 + 236976*x^4 + 7626976*x^5 +...
F(4,x)^5 = 1 + 25*x + 775*x^2 + 27325*x^3 + 1068175*x^4 + 45826525*x^5 +...
F(5,x)^6 = 1 + 36*x + 1548*x^2 + 73872*x^3 + 3826656*x^4 + 213200856*x^5 +...
F(6,x)^7 = 1 + 49*x + 2793*x^2 + 173705*x^3 + 11558561*x^4 + 815959809*x^5 +...
F(7,x)^8 = 1 + 64*x + 4672*x^2 + 367552*x^3 + 30617920*x^4 + 2679625792*x^5 +...
...
PROG
(PARI) {a(n)=local(A=1+n*x); for(k=0, n-1, A=(1 - (n-k)^2*x*A +x*O(x^n))^(-1/(n-k))); polcoeff(A, n)}
for(n=0, 30, print1(a(n), ", ")) \\ Paul D. Hanna, May 31 2014
CROSSREFS
Cf. A243195.
Sequence in context: A182957 A307375 A007767 * A145081 A020562 A193161
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Oct 14 2002
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 10:56 EDT 2024. Contains 371791 sequences. (Running on oeis4.)