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

A316078
Sequence shifts left six places under Weigh transform with a(n) = signum(n) for n<6.
3
0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 3, 4, 5, 6, 9, 12, 16, 23, 31, 43, 61, 85, 118, 168, 236, 333, 475, 674, 958, 1369, 1956, 2796, 4013, 5758, 8270, 11905, 17148, 24720, 35693, 51572, 74573, 107957, 156399, 226740, 329013, 477738, 694148, 1009326, 1468526
OFFSET
0,10
LINKS
FORMULA
G.f.: x + x^2 + x^3 + x^4 + x^5 + x^6 * Product_{n>=1} (1 + x^n)^a(n). - Ilya Gutkovskiy, May 09 2019
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-> (k-> `if`(n<k, signum(n), b(n-k$2)))(6):
seq(a(n), n=0..49);
CROSSREFS
Column k=6 of A316074.
Sequence in context: A274145 A036072 A045475 * A082543 A050322 A325512
KEYWORD
nonn,eigen
AUTHOR
Alois P. Heinz, Jun 23 2018
STATUS
approved