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

A145282
a(n) = number of monomials in n-th power of polynomial x^2-x-1
0
3, 5, 5, 9, 11, 13, 15, 15, 19, 21, 23, 25, 27, 25, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 73, 75, 77, 79, 81, 83, 85, 87, 89, 91, 93, 95, 97, 99, 101, 103, 105, 107, 109, 111, 113, 115, 117, 119, 121, 123, 125, 127, 129, 131, 133
OFFSET
1,1
COMMENTS
a(n)=Length[(x^2-x-1)^n]
MATHEMATICA
a = {}; k = x^2 - x - 1; m = k; Do[AppendTo[a, Length[m]]; m = Expand[m*k], {n, 1, 100}]; a (*Artur Jasinski*)
CROSSREFS
Sequence in context: A076877 A332775 A120841 * A049757 A190864 A155537
KEYWORD
nonn
AUTHOR
Artur Jasinski, Oct 06 2008
STATUS
approved