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!)
A038073 Shifts left under Weigh transform. 3
-1, -1, 0, 0, 1, 0, -1, -1, 1, 2, 0, -3, -3, 2, 8, 4, -10, -18, 1, 36, 33, -36, -102, -33, 170, 238, -95, -578, -401, 762, 1599, 97, -3184, -3493, 2950, 10277, 4570, -16611, -26794, 6751, 63040, 51658, -78369, -190465, -34209, 365790, 455401, -296331, -1275020 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,10
LINKS
N. J. A. Sloane, Transforms
MAPLE
b:= proc(n, i) option remember; `if`(n=0, 1, `if`(i<1, 0,
add(binomial(a(i), j)*b(n-i*j, i-1), j=0..n/i)))
end:
a:= n-> `if`(n<2, -1, b((n-1)$2)):
seq(a(n), n=1..60); # Alois P. Heinz, May 20 2013
MATHEMATICA
b[n_, i_] := b[n, i] = If[n==0, 1, If[i<1, 0, Sum[Binomial[a[i], j]*b[n-i*j, i-1], {j, 0, n/i}]]]; a[n_] := If[n<2, -1, b[n-1, n-1]]; Table[a[n], {n, 1, 60}] (* Jean-François Alcover, Feb 27 2017, after Alois P. Heinz *)
CROSSREFS
Sequence in context: A105569 A068455 A329098 * A283981 A291307 A239313
KEYWORD
sign,eigen
AUTHOR
Christian G. Bower, Jan 04 1999
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 September 5 14:34 EDT 2024. Contains 375700 sequences. (Running on oeis4.)