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!)
A348875 G.f. A(x) satisfies: A(x) = 1 / (1 - x - x * A(2*x)). 5
1, 2, 8, 56, 656, 13184, 477248, 32524928, 4295916032, 1117098857984, 576442191401984, 592587279827787776, 1215991461595100598272, 4985567391504232291377152, 40861715233637664786276712448, 669641809249948891254213657460736, 21945501536426419427607885034600595456 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(0) = 1; a(n) = a(n-1) + Sum_{k=0..n-1} 2^k * a(k) * a(n-k-1).
a(n) ~ c * 2^(n*(n-1)/2), where c = 1/(A048651 * A083864) = 2*Product_{j>=1} (2^j+1)/(2^j-1) = 16.51197587155650013108828169886454625305400323357646... - Vaclav Kotesovec, Nov 03 2021
MATHEMATICA
nmax = 16; A[_] = 0; Do[A[x_] = 1/(1 - x - x A[2 x]) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
a[0] = 1; a[n_] := a[n] = a[n - 1] + Sum[2^k a[k] a[n - k - 1], {k, 0, n - 1}]; Table[a[n], {n, 0, 16}]
CROSSREFS
Sequence in context: A128814 A108208 A203199 * A302999 A135079 A084872
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Nov 02 2021
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 6 09:39 EDT 2024. Contains 372293 sequences. (Running on oeis4.)