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

A091612
Column 1 of triangle A091603.
2
1, -1, -2, 0, 1, 3, 4, 3, 3, 0, 0, -3, -4, -7, -9, -9, -9, -9, -9, -4, -5, -4, -3, 2, 3, 5, 6, 11, 11, 17, 17, 17, 17, 17, 18, 18, 18, 18, 18, 11, 10, 13, 13, 10, 11, 10, 10, 3, 4, 0, 1, -2, -2, -3, -3, -9, -8, -7, -7, -19, -19, -19, -19, -19, -20, -21, -21, -21, -21, -27
OFFSET
1,3
LINKS
MATHEMATICA
b[n_, i_, k_]:= b[n, i, k]= If[n==0, 1, If[i>n, 0, Sum[b[n-i*j, i+1, Min[k, Quotient[n-i*j, i+1]]], {j, 0, k}]]];
t[n_, k_]:= t[n, k]= If[k>n, 0, b[n, 1, k] - b[n, 1, k-1]]; (* t = A091602 *)
M := With[{p = 110}, Table[t[n, k], {n, p}, {k, p}]];
T := Inverse[M]; (* T = A091603 *)
Table[T[[n, 1]], {n, 100}] (* G. C. Greubel, Nov 27 2021 *)
CROSSREFS
Cf. A091603.
Sequence in context: A004542 A207331 A134405 * A253672 A367562 A213861
KEYWORD
sign
AUTHOR
Christian G. Bower, Jan 23 2004
STATUS
approved