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

A307349
a(n) = Sum_{i=1..n} Sum_{j=1..n} (-1)^(i+j) * (i+j)!/(2!*i!*j!).
5
0, 1, 1, 5, 15, 56, 203, 757, 2839, 10736, 40821, 155948, 598065, 2301118, 8878591, 34340085, 133100055, 516851528, 2010358061, 7831136920, 30546063745, 119291436738, 466379022561, 1825168170620, 7149316835465, 28027993191706, 109965636641173
OFFSET
0,4
LINKS
FORMULA
a(n) = (A120305(n) - (-1)^n)/2. - Vaclav Kotesovec, Apr 03 2019
a(n) ~ 2^(2*n+1) / (9*sqrt(Pi*n)). - Vaclav Kotesovec, Apr 03 2019
G.f.: (1/sqrt(1-4*z)-1+2*z/(1-z^2))/(2*(2+z)). - Sergey Perepechko, Jul 11 2019
MATHEMATICA
Table[Sum[Sum[(-1)^(i + j)*(i + j)!/(2*i!*j!), {i, 1, n}], {j, 1, n}], {n, 0, 30}] (* Vaclav Kotesovec, Apr 03 2019 *)
PROG
(PARI) {a(n) = sum(i=1, n, sum(j=1, n, (-1)^(i+j)*(i+j)!/(2*i!*j!)))}
(PARI) {a(n) = sum(i=2, 2*n, (-1)^i*i!*polcoef(sum(j=1, n, x^j/j!)^2, i))/2} \\ Seiichi Manyama, May 20 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Apr 03 2019
STATUS
approved