OFFSET
0,4
REFERENCES
J. Riordan, An Introduction to Combinatorial Analysis, Wiley, 1958, p. 198.
N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..150
R. C. Read, Letter to N. J. A. Sloane, Oct. 29, 1976
FORMULA
a(n) ~ 2/exp(2) * n!. - Vaclav Kotesovec, Sep 06 2014
a(n)+2*a(n+p)+a(n+2*p) is divisible by p for any prime p. - Mark van Hoeij, Jun 13 2019
a(n) = Sum_{k=2..n} (-1)^k * (n-k)! * binomial(k,2) * binomial(2*n-k,k). - Seiichi Manyama, Jun 21 2026
MATHEMATICA
max = 30; f[x_, y_] := Sum[n!*((x*y)^n/(1+x*(y-1))^(2*n+1)), {n, 0, max}]; t = MapIndexed[Take[#1, First[#2]]&, CoefficientList[Series[f[x, y], {x, 0, max}, {y, 0, max}], {x, y}]] ; a[0] = a[1] = 0; a[n_] := t[[n+1, n-1]]; Table[a[n], {n, 0, max}] (* Jean-François Alcover, Mar 11 2014, after Vladeta Jovovic *)
PROG
(PARI) a(n) = sum(k=2, n, (-1)^k*(n-k)!*binomial(k, 2)*binomial(2*n-k, k)); \\ Seiichi Manyama, Jun 21 2026
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
Name changed by Seiichi Manyama, Jun 21 2026
STATUS
approved
