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!)
A305532 Expansion of 1/(1 - x/(1 - 1*2*x/(1 - 2*3*x/(1 - 3*4*x/(1 - 4*5*x/(1 - ...)))))), a continued fraction. 4
1, 1, 3, 21, 315, 8613, 372123, 23145957, 1951467291, 213852190437, 29523337936155, 5011258121042661, 1025542423300379931, 248988579422292953829, 70752815796279635539227, 23261468728483619098626789, 8760705555494801063319729435, 3747001028007419861036996070117 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Invert transform of tangent numbers (A000182).
LINKS
N. J. A. Sloane, Transforms
FORMULA
a(n) ~ 2^(4*n + 1) * n^(2*n - 1/2) / (exp(2*n) * Pi^(2*n - 1/2)). - Vaclav Kotesovec, Jun 08 2019
MAPLE
b:= proc(x, y) option remember; `if`(y<0 or y>x, 0,
`if`(x=0, 1, max(1, y)*(b(x-1, y-1)+b(x-1, y+1))))
end:
a:= n-> b(2*n, 0) :
seq(a(n), n=0..22); # Alois P. Heinz, Jun 08 2018
# Alternative:
T := proc(n, k) option remember; if k = 0 then 1 else if k = n then T(n, k-1)
else (n - k)*(n - k + 1) * T(n, k - 1) + T(n - 1, k) fi fi end:
a := n -> T(n, n): seq(a(n), n = 0..17); # Peter Luschny, Oct 01 2023
MATHEMATICA
nmax = 17; CoefficientList[Series[1/(1 - x/(1 + ContinuedFractionK[-k (k + 1) x, 1, {k, 1, nmax}])), {x, 0, nmax}], x]
nmax = 17; CoefficientList[Series[1/(1 - Sum[2 PolyGamma[2 k - 1, 1/2]/Pi^(2 k) x^k, {k, 1, nmax}]), {x, 0, nmax}], x]
a[0] = 1; a[n_] := a[n] = Sum[2^(2 k) (2^(2 k) - 1) Abs[BernoulliB[2 k]]/(2 k) a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 17}]
CROSSREFS
Sequence in context: A208731 A158888 A331583 * A005329 A341471 A134528
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 23 14:32 EDT 2024. Contains 371914 sequences. (Running on oeis4.)