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!)
A348879 G.f. A(x) satisfies: A(x) = 1 / (1 - x - x^2 * A(3*x)). 3
1, 1, 2, 6, 29, 221, 2815, 59607, 2175115, 134785987, 14543011028, 2682224473296, 864129873439979, 476879023670530355, 460188677448639450646, 761220053428592181980874, 2202591080616789155249254723, 10927081698418028875550581480027, 94836180093445711611212497662570806 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 1; a(n) = a(n-1) + Sum_{k=0..n-2} 3^k * a(k) * a(n-k-2).
a(n) ~ c * 3^(n*(n-2)/4), where c = 4.2101130581370834571021724998929772199905440992108887037121562184404379... - Vaclav Kotesovec, Nov 03 2021
MATHEMATICA
nmax = 18; A[_] = 0; Do[A[x_] = 1/(1 - x - x^2 A[3 x]) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
a[0] = 1; a[n_] := a[n] = a[n - 1] + Sum[3^k a[k] a[n - k - 2], {k, 0, n - 2}]; Table[a[n], {n, 0, 18}]
CROSSREFS
Sequence in context: A321961 A088957 A030538 * A326900 A181812 A330648
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 April 30 16:06 EDT 2024. Contains 372136 sequences. (Running on oeis4.)