login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; graph; refs; listen; history; text; internal format)
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

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified March 28 04:13 EDT 2024. Contains 371235 sequences. (Running on oeis4.)