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!)
A305536 Expansion of 1/(1 - x/(1 - x - 1*x/(1 - x - 2*x/(1 - x - 3*x/(1 - x - 4*x/(1 - ...)))))), a continued fraction. 1
1, 1, 3, 12, 62, 410, 3426, 35360, 438390, 6358306, 105544388, 1970997142, 40860191470, 930482058472, 23079257369054, 619157277351618, 17860295754328884, 551188620179519302, 18119420989759583998, 632069815329176122584, 23318435171385786420958, 907077442499274638005314 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Invert transform of A001515, shifted right one place.
LINKS
N. J. A. Sloane, Transforms
FORMULA
a(n) ~ 2^(n - 1/2) * n^(n-1) / exp(n-1). - Vaclav Kotesovec, Sep 18 2021
MAPLE
b:= proc(n) option remember;
`if`(n<2, n+1, (2*n-1)*b(n-1)+b(n-2))
end:
a:= proc(n) option remember;
`if`(n=0, 1, add(b(j-1)*a(n-j), j=1..n))
end:
seq(a(n), n=0..30); # Alois P. Heinz, Jan 11 2023
MATHEMATICA
nmax = 21; CoefficientList[Series[1/(1 - x/(1 - x + ContinuedFractionK[-k x, 1 - x, {k, 1, nmax}])), {x, 0, nmax}], x]
nmax = 21; CoefficientList[Series[1/(1 - Sum[HypergeometricPFQ[{k, 1 - k}, {}, -1/2] x^k, {k, 1, nmax}]), {x, 0, nmax}], x]
a[0] = 1; a[n_] := a[n] = Sum[HypergeometricPFQ[{k, 1 - k}, {}, -1/2] a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 21}]
CROSSREFS
Sequence in context: A020033 A266329 A208734 * A121123 A361882 A020123
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jun 04 2018
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 18 11:52 EDT 2024. Contains 371779 sequences. (Running on oeis4.)