The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A091623 Column 1 of triangle A091614. 2
1, -1, -3, -1, 5, 13, 27, 41, 43, 25, -23, -157, -447, -1011, -2087, -4081, -7685, -14141, -25707, -46251, -82729, -147295, -261317, -462403, -816653, -1439457, -2532779, -4448035, -7794637, -13624815, -23744693, -41230561, -71277787 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
MATHEMATICA
b[n_, l_, k_]:= b[n, l, k]= If[n==0, 1, Sum[If[i==l, 0, Sum[b[n-i*j, i, k], {j, 1, Min[k, n/i]}]], {i, n}]];
t[n_, k_]:= t[n, k]= If[k>n, 0, b[n, 0, k] - b[n, 0, k-1]]; (* A091613 *)
M:= With[{p=53}, Table[t[n, k], {n, p}, {k, p}]];
T := Inverse[M]; (* A091614 *)
Table[T[[n, 1]], {n, 50}] (* G. C. Greubel, Nov 27 2021 *)
CROSSREFS
Cf. A091614.
Sequence in context: A073496 A176122 A370380 * A215474 A348114 A309498
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 June 4 06:06 EDT 2024. Contains 373089 sequences. (Running on oeis4.)