OFFSET
0,2
FORMULA
E.g.f.: (1/2) * (cosh(x) - cos(x)) / (1 - x^4) = x^2/2! + 361*x^6/6! + 1819441*x^10/10! + 43710250585*x^14/14! + ...
a(n) = floor(c * (4*n+2)!), where c = (cosh(1) - cos(1)) / 2 = A334364.
MATHEMATICA
Table[(4 n + 2)! Sum[1/(4 k + 2)!, {k, 0, n}], {n, 0, 10}]
Table[(4 n + 2)! SeriesCoefficient[(1/2) (Cosh[x] - Cos[x])/(1 - x^4), {x, 0, 4 n + 2}], {n, 0, 10}]
Table[Floor[(1/2) (Cosh[1] - Cos[1]) (4 n + 2)!], {n, 0, 10}]
PROG
(PARI) a(n) = (4*n+2)!*sum(k=0, n, 1/(4*k+2)!); \\ Michel Marcus, Sep 17 2020
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Sep 17 2020
STATUS
approved