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!)
A111985 Expansion of g.f.: A(x) = (Sum_{n>=0} (2*n+1)*8^n*x^(n*(n+1)/2))^(1/12). 3
1, 2, -22, 364, -6490, 124476, -2501116, 51848984, -1099502074, 23722687340, -518856745492, 11473878455400, -256044198076836, 5757405060992728, -130302582530068280, 2965537736183034672, -67820940980720843322, 1557676412999229945932 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
EXAMPLE
G.f.: A(x) = 1 + 2*x - 22*x^2 + 364*x^3 - 6490*x^4 + 124476*x^5 - 2501116*x^6 +...
where
A(x)^12 = 1 + 3*8*x + 5*8^2*x^3 + 7*8^3*x^6 + 9*8^4*x^10 + 11*8^5*x^15 + 13*8^6*x^21 + 15*8^7*x^28 + 17*8^8*x^36 + 19*8^9*x^45 + 21*8^10*x^55 +...
MAPLE
seq(coeff(series( ( add((2*n+1)*8^n*x^(n*(n+1)/2), n=0..40) )^(1/12), x, n+1), x, n), n = 0..30); # G. C. Greubel, Nov 05 2019
MATHEMATICA
CoefficientList[Series[(Sum[(2n+1)*8^n*x^(n(n+1)/2), {n, 0, 40}])^(1/12), {x, 0, 30}], x] (* G. C. Greubel, Nov 05 2019 *)
PROG
(PARI) {a(n)=polcoeff(sum(k=0, sqrtint(2*n+1), (2*k+1)*8^k*x^(k*(k+1)/2)+x*O(x^n))^(1/12), n)}
(Sage) [( (sum((2*n+1)*8^n*x^(n*(n+1)/2) for n in (0..40)) )^(1/12) ).series(x, n+1).list()[n] for n in (0..30)] # G. C. Greubel, Nov 05 2019
CROSSREFS
Cf. A111983 (g.f. A(x)^12), A111984 (g.f. A(x)^4).
Sequence in context: A363304 A078232 A151615 * A265860 A138463 A007842
KEYWORD
sign
AUTHOR
Paul D. Hanna, Aug 25 2005
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 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)