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”).

A279881
a(n) = A168467(n) * Sum_{k=0..n}(2^k*(k!)^2 / (2*k+1)!).
1
1, 8, 1056, 5529600, 2040024268800, 82038030902231040000, 512596445591262883479552000000, 671373457257855830831011844849664000000000, 238977230623673235057124486022413812190150656000000000000
OFFSET
0,2
LINKS
FORMULA
a(n) ~ Pi/2 * A168467(n).
a(0) = 1, a(n) = a(n-1) * (2*n + 1)! + 2^n * (n!)^2 * A168467(n-1).
MATHEMATICA
Table[Product[((2 k + 2) (2 k + 3))^(n - k), {k, 0, n}] Sum[(2^j*(j!)^2/(2 j + 1)!), {j, 0, n}], {n, 0, 8}] (* Michael De Vlieger, Dec 22 2016 *)
PROG
(PARI) a(n) = prod(k=1, n, (2*k+1)!) * sum(k=0, n, 2^k * (k!)^2 / (2*k+1)!)
CROSSREFS
Cf. A168467.
Sequence in context: A176372 A047943 A089672 * A246114 A229164 A357543
KEYWORD
nonn,easy
AUTHOR
Daniel Suteu, Dec 21 2016
STATUS
approved