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!)
A171200 G.f. satisfies A(x) = 1 + x*A(2x)^3. 14
1, 1, 6, 84, 2312, 121056, 12173568, 2391143424, 928316362752, 716762538541056, 1103851068987015168, 3395472896229407981568, 20875407961847891162038272, 256600638160251032545689337856, 6307244441266548036155317187248128 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 1; a(n) = 2^(n-1) * Sum_{i=0..n-1} Sum_{j=0..n-i-1} a(i) * a(j) * a(n-i-j-1). - Ilya Gutkovskiy, Nov 03 2021
MATHEMATICA
m = 15; A[_] = 0; Do[A[x_] = 1 + x A[2x]^3 + O[x]^m // Normal, {m}];
CoefficientList[A[x], x] (* Jean-François Alcover, Nov 07 2019 *)
PROG
(PARI) {a(n)=local(A=1+x+x*O(x^n)); for(i=0, n, A=1+x*subst(A, x, 2*x)^3); polcoeff(A, n)}
CROSSREFS
Sequence in context: A177562 A273935 A318399 * A365354 A195245 A030031
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 May 8 04:35 EDT 2024. Contains 372319 sequences. (Running on oeis4.)