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!)
A348876 G.f. A(x) satisfies: A(x) = 1 / (1 - x - x * A(3*x)). 3
1, 2, 10, 122, 3778, 321794, 79518154, 58289895290, 127713856067074, 838441945709583746, 16506407616569722560778, 974752895709158578160969978, 172678450359956040815290930278850, 91769099059347441553324620759011469698, 146309952397373808216450794120154608358754762 (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} 3^k * a(k) * a(n-k-1).
a(n) ~ c * 3^(n*(n-1)/2), where c = 2*Product_{j>=1} (3^j+1)/(3^j-1) = QPochhammer(-1, 1/3) / QPochhammer(1/3) = 5.58779203552209791475992929265... - Vaclav Kotesovec, Nov 03 2021
MATHEMATICA
nmax = 14; A[_] = 0; Do[A[x_] = 1/(1 - x - x 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 - 1], {k, 0, n - 1}]; Table[a[n], {n, 0, 14}]
CROSSREFS
Sequence in context: A013038 A005321 A339934 * A092645 A346372 A333455
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 25 10:51 EDT 2024. Contains 371967 sequences. (Running on oeis4.)