login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A162841
G.f.: A(x) = sqrt( Sum_{n>=0} 4^(n(n+1)/2)*x^n ).
1
1, 2, 30, 1988, 519862, 535771548, 2197934140524, 36024384044050824, 2361111125528468202534, 618965296335059538851784236, 649035869315354547057886734224068, 2722257637277195404313634492141394601400, 45671920722055969331642704395417211607924522812
OFFSET
0,2
LINKS
EXAMPLE
G.f.: A(x) = 1 + 2*x + 30*x^2 + 1988*x^3 + 519862*x^4 +...
A(x)^2 = 1 + 4*x + 64*x^2 + 4096*x^3 + 1048576*x^4 +...+ 4^(n(n+1)/2)*x^n +...
PROG
(PARI) {a(n)=polcoeff(sum(k=0, n, 4^(k*(k+1)/2)*x^k +x*O(x^n))^(1/2), n)}
CROSSREFS
Sequence in context: A208093 A144501 A198861 * A158260 A099800 A099929
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jul 14 2009
EXTENSIONS
Terms a(11) and beyond from Andrew Howroyd, Nov 08 2019
STATUS
approved