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

A300277
G.f.: 1 + Sum_{n>=1} a(n)*x^n/(1 - x^n) = Product_{n>=1} 1/(1 - n*x^n).
6
1, 2, 5, 11, 24, 48, 96, 184, 348, 645, 1169, 2140, 3761, 6687, 11645, 20326, 34635, 59854, 100579, 171211, 285718, 479325, 791315, 1318955, 2156805, 3553589, 5783306, 9445861, 15250215, 24759156, 39713787, 63991400, 102197851, 163548416, 259744930, 413761633, 653715967
OFFSET
1,2
COMMENTS
Moebius transform of A006906.
LINKS
N. J. A. Sloane, Transforms
FORMULA
a(n) = Sum_{d|n} mu(n/d)*A006906(d).
MATHEMATICA
nn = 37; f[x_] := 1 + Sum[a[n] x^n/(1 - x^n), {n, 1, nn}]; sol = SolveAlways[0 == Series[f[x] - Product[1/(1 - n x^n), {n, 1, nn}], {x, 0, nn}], x]; Table[a[n], {n, 1, nn}] /. sol // Flatten
s[n_] := SeriesCoefficient[Product[1/(1 - k x^k), {k, 1, n}], {x, 0, n}]; a[n_] := Sum[MoebiusMu[n/d] s[d], {d, Divisors[n]}]; Table[a[n], {n, 1, 37}]
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Mar 01 2018
STATUS
approved