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

A343429
G.f.: 1 + 1^2*x/(1 + 2^2*x/(1 + 3^2*x/(1 + 4^2*x/(1 + 5^2*x/(1 + ...))))).
1
1, 1, -4, 52, -1252, 47380, -2589892, 193480948, -18967658404, 2364328255444, -365398042310020, 68588722144816564, -15372942045464127076, 4055513943597589455508, -1243968998818298201100868, 439009056263271003371155060, -176627099114433045240563153188, 80365037678138695452520237597012, -41059325231828016124174743746157316
OFFSET
0,3
LINKS
FORMULA
G.f.: 1/(Sum_{k>=0} A028296(k) * x^k).
PROG
(PARI) a(n) = my(A=1+O(x)); for(i=1, n, A=1+(n-i+1)^2*x/A); polcoef(A, n);
CROSSREFS
KEYWORD
sign
AUTHOR
Seiichi Manyama, Apr 15 2021
STATUS
approved