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

A107615
Coefficient list length of Poincaré-like polynomials made from A047845, indices of 4*n+1 nonprimes as the m(i) exponents.
0
1, 2, 7, 18, 31, 48, 71, 96, 125, 158, 193, 232, 273, 316, 363, 416, 475, 536, 599, 664, 731, 802, 875, 952, 1033, 1116, 1201, 1290, 1383, 1478, 1579
OFFSET
1,2
FORMULA
P(m) = Product[1 + t^(2*A045751(n) + 1), {n, 1, m}] a(n) = Length[CoefficientList[P(n),x]].
MATHEMATICA
a = Flatten[Table[If[PrimeQ[4*n + 1] == False, n, {}], {n, 0, 50}]]; Table[Length[CoefficientList[Product[1 + t^(2*a[[n]] + 1), {n, 1, m}], t]], { m, 0, Length[a]}]
CROSSREFS
Cf. A045751.
Sequence in context: A104310 A301325 A001114 * A195605 A184096 A136583
KEYWORD
nonn,uned
AUTHOR
Roger L. Bagula, May 16 2007
STATUS
approved