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!)
A349012 G.f. A(x) satisfies: A(x) = (1 + x * A(2*x)) / (1 - x * A(x)). 1
1, 2, 8, 52, 552, 10208, 350112, 23159760, 3012389984, 777296223040, 399542726439936, 409933997609848192, 840366306053838941952, 3443822768422065940362240, 28218687132517064788995222528, 462391421142204650963524251763968, 15152566983759983965941543133445666304 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(0) = 1; a(n) = 2^(n-1) * a(n-1) + Sum_{k=0..n-1} a(k) * a(n-k-1).
a(n) ~ c * 2^(n*(n-1)/2), where c = 11.40022022373995418911523299051117421707893086825818379118899572625286143... - Vaclav Kotesovec, Nov 06 2021
MATHEMATICA
nmax = 16; A[_] = 0; Do[A[x_] = (1 + x A[2 x])/(1 - x A[x]) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
a[0] = 1; a[n_] := a[n] = 2^(n - 1) a[n - 1] + Sum[a[k] a[n - k - 1], {k, 0, n - 1}]; Table[a[n], {n, 0, 16}]
CROSSREFS
Sequence in context: A151879 A191552 A154828 * A057629 A191507 A191602
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Nov 05 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 April 25 16:23 EDT 2024. Contains 371989 sequences. (Running on oeis4.)