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

A316077
Sequence shifts left five places under Weigh transform with a(n) = signum(n) for n<5.
3
0, 1, 1, 1, 1, 1, 1, 1, 2, 2, 3, 4, 5, 7, 10, 14, 20, 28, 40, 58, 84, 121, 176, 257, 376, 552, 812, 1196, 1767, 2615, 3877, 5757, 8562, 12751, 19018, 28400, 42461, 63554, 95234, 142845, 214473, 322310, 484793, 729797, 1099509, 1657761, 2501299, 3776681
OFFSET
0,9
LINKS
FORMULA
G.f.: x + x^2 + x^3 + x^4 + x^5 * 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)))(5):
seq(a(n), n=0..47);
CROSSREFS
Column k=5 of A316074.
Sequence in context: A173674 A018128 A032189 * A186425 A327662 A034395
KEYWORD
nonn,eigen
AUTHOR
Alois P. Heinz, Jun 23 2018
STATUS
approved