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!)
A346506 G.f. A(x) satisfies: A(x) = (1 + x * A(x)^2) / (1 - x + x^2). 1
1, 2, 5, 17, 66, 274, 1190, 5341, 24577, 115326, 549747, 2654739, 12959468, 63848307, 317064921, 1585380283, 7975134892, 40332823042, 204947059412, 1045859173864, 5357606584326, 27540884494209, 142023060613755, 734506610474205, 3808771672620618, 19798640525731461, 103149287155802941 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(0) = 1, a(1) = 2; a(n) = 2 * a(n-1) + a(n-2) + Sum_{k=2..n-1} a(k) * a(n-k-1).
From Nikolaos Pantelidis, Jan 08 2023 (Start)
G.f.: 1/G(0), where G(k) = 1-(2*x-x^2)/(1-x/G(k+1)) (continued fraction).
G.f.: (1-x+x^2-sqrt(x^4-2*x^3+3*x^2-6*x+1))/(2*x).
(End)
MATHEMATICA
nmax = 26; A[_] = 0; Do[A[x_] = (1 + x A[x]^2)/(1 - x + x^2) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
a[0] = 1; a[1] = 2; a[n_] := a[n] = 2 a[n - 1] + a[n - 2] + Sum[a[k] a[n - k - 1], {k, 2, n - 1}]; Table[a[n], {n, 0, 26}]
CROSSREFS
Sequence in context: A008932 A167809 A262449 * A362967 A062881 A122206
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jul 21 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 August 16 23:15 EDT 2024. Contains 375195 sequences. (Running on oeis4.)