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

A294137
Number of compositions (ordered partitions) of n into nontrivial divisors of n.
4
1, 0, 0, 0, 1, 0, 2, 0, 5, 1, 2, 0, 50, 0, 2, 2, 55, 0, 185, 0, 243, 2, 2, 0, 8903, 1, 2, 19, 1219, 0, 48824, 0, 5271, 2, 2, 2, 1323569, 0, 2, 2, 369182, 0, 1659512, 0, 36636, 5111, 2, 0, 254187394, 1, 53535, 2, 223502, 0, 65005979, 2, 16774462, 2, 2, 0, 235105418684, 0, 2, 41386, 47350055, 2
OFFSET
0,7
FORMULA
a(n) = [x^n] 1/(1 - Sum_{d|n, 1 < d < n} x^d).
EXAMPLE
a(8) = 5 because 8 has 4 divisors {1, 2, 4, 8} among which 2 are nontrivial divisors {2, 4} therefore we have [4, 4], [4, 2, 2], [2, 4, 2], [2, 2, 4] and [2, 2, 2, 2].
MATHEMATICA
Table[d = Divisors[n]; Coefficient[Series[1/(1 - Sum[Boole[d[[k]] != 1 && d[[k]] != n] x^d[[k]], {k, Length[d]}]), {x, 0, n}], x, n], {n, 0, 65}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Oct 23 2017
STATUS
approved