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!)
A348861 G.f. A(x) satisfies: A(x) = 1 / ((1 + x) * (1 - x * A(3*x))). 2
1, 0, 1, 9, 253, 20754, 5064301, 3696964686, 8088964208893, 53079786931826952, 1044822534120774924517, 61696770693051062357722413, 10929459535778338593167921597497, 5808373834674826377471903826388912406, 9260429805605038398327449254849233420999649 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(n) = (-1)^n + Sum_{k=0..n-1} 3^k * a(k) * a(n-k-1).
a(n) ~ c * 3^(n*(n-1)/2), where c = 0.353669086629957226916356822657293915192042094460583129054709983118948... - 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)^n + Sum[3^k a[k] a[n - k - 1], {k, 0, n - 1}]; Table[a[n], {n, 0, 14}]
CROSSREFS
Sequence in context: A135484 A345160 A178186 * A212290 A296950 A025133
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 19 14:10 EDT 2024. Contains 371792 sequences. (Running on oeis4.)