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!)
A171194 G.f. satisfies A(x) = 1/(1 - x*A(2x)^4). 3
1, 1, 9, 185, 7241, 525513, 71973193, 19054326985, 9916177373001, 10235479554015689, 21045100094428458057, 86370025530284981044937, 708236082282948046820221257, 11609413456993946896013575994313 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) ~ c * 2^(n*(n+3)/2), where c = 0.5726679317239416602436569686037310143000778... - Vaclav Kotesovec, Nov 03 2021
MATHEMATICA
nmax = 15; A[_] = 0; Do[A[x_] = 1/(1 - x*A[2*x]^4) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x] (* Vaclav Kotesovec, Nov 03 2021 *)
PROG
(PARI) {a(n)=local(A=1+x+x*O(x^n)); for(i=0, n, A=1/(1-x*subst(A, x, 2*x)^4) ); polcoeff(A, n)}
CROSSREFS
Sequence in context: A300598 A189803 A216409 * A196297 A274781 A293848
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Dec 05 2009
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 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)