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!)
A348858 G.f. A(x) satisfies: A(x) = 1 / ((1 - x) * (1 - x * A(3*x))). 2
1, 2, 9, 103, 3101, 261192, 64285189, 47059492688, 103060910397021, 676492249628112382, 13317427360663454672669, 786420726604930579016189223, 139314431838014895142151741877241, 74037818920801629179455290512454633872, 118040419689979917511971388549088825283510249 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
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 = 4.508135635010167805309616576501854361005320931661829410476785686203732753... - Vaclav Kotesovec, Nov 02 2021
MATHEMATICA
nmax = 14; A[_] = 0; Do[A[x_] = 1/((1 - x) (1 - x A[3 x])) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
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: A041239 A098610 A226391 * A125815 A132494 A136172
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 July 11 17:52 EDT 2024. Contains 374234 sequences. (Running on oeis4.)