login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A100444
Bisection of A000255.
0
1, 3, 53, 2119, 148329, 16019531, 2467007773, 513137616783, 138547156531409, 47106033220679059, 19690321886243846661, 9923922230666898717143, 5934505493938805432851513, 4154153845757163802996059099
OFFSET
0,2
FORMULA
a(n) = (2*n + 1)!*hypergeom([-2*n], [-2*n - 1], -1). - Peter Luschny, Nov 02 2018
D-finite with recurrence a(n) +(-4*n^2-2*n+1)*a(n-1) +2*n*(2*n-3)*a(n-2)=0. - R. J. Mathar, Jul 27 2022
MAPLE
a := n -> (2*n+1)!*hypergeom([-2*n], [-2*n-1], -1):
seq(simplify(a(n)), n=0..13); # Peter Luschny, Nov 02 2018
MATHEMATICA
a[n_] := (2n)! SeriesCoefficient[E^-x / (1-x)^2, {x, 0, 2n}];
Table[a[n], {n, 0, 13}] (* Jean-François Alcover, Jun 11 2019 *)
CROSSREFS
Cf. A000255.
Sequence in context: A012742 A012823 A098932 * A300420 A300683 A296678
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Nov 21 2004
EXTENSIONS
More terms from Hugo Pfoertner, Nov 26 2004
STATUS
approved