login
A337729
a(n) = (4*n+2)! * Sum_{k=0..n} 1 / (4*k+2)!.
5
1, 361, 1819441, 43710250585, 3210080802962401, 563561785768079119561, 202205968733586788098486801, 132994909755454702268136738753721, 148026526435655214537290625514621562305, 262237873172349351865682580536682974917045801, 704454843460345510903820429747302209179158476142321
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
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Sep 17 2020
STATUS
approved