login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A300275 G.f.: 1 + Sum_{n>=1} a(n)*x^n/(1 - x^n) = Product_{n>=1} 1/(1 - x^n)^n. 9
1, 2, 5, 10, 23, 40, 85, 147, 276, 474, 858, 1421, 2484, 4079, 6850, 11137, 18333, 29277, 47329, 74768, 118703, 185614, 290782, 449568, 696009, 1066258, 1632376, 2479057, 3759611, 5661568, 8512308, 12722132, 18974109, 28157619, 41690937, 61453929, 90379783 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Moebius transform of A000219.
From Gus Wiseman, Jan 21 2019: (Start)
Also the number of plane partitions of n with relatively prime entries. For example, the a(4) = 10 plane partitions are:
31 211 1111
.
3 21 11 111
1 1 11 1
.
2 11
1 1
1 1
.
1
1
1
1
Also the number of plane partitions of n whose multiset of rows is aperiodic, meaning its multiplicities are relatively prime. For example, the a(4) = 10 plane partitions are:
4 31 22 211 1111
.
3 21 111
1 1 1
.
2 11
1 1
1 1
(End)
LINKS
N. J. A. Sloane, Transforms
FORMULA
a(n) = Sum_{d|n} mu(n/d)*A000219(d).
MAPLE
with(numtheory):
b:= proc(n) option remember; `if`(n=0, 1, add(
b(n-j)*sigma[2](j), j=1..n)/n)
end:
a:= n-> add(b(d)*mobius(n/d), d=divisors(n)):
seq(a(n), n=1..40); # Alois P. Heinz, Jun 21 2018
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 - x^n)^n, {n, 1, nn}], {x, 0, nn}], x]; Table[a[n], {n, 1, nn}] /. sol // Flatten
s[n_] := SeriesCoefficient[Product[1/(1 - x^k)^k, {k, 1, n}], {x, 0, n}]; a[n_] := Sum[MoebiusMu[n/d] s[d], {d, Divisors[n]}]; Table[a[n], {n, 1, 37}]
CROSSREFS
Sequence in context: A198950 A015902 A301427 * A226455 A284139 A068054
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Mar 01 2018
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 17 23:23 EDT 2024. Contains 371767 sequences. (Running on oeis4.)