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!)
A341068 Number of ways to write n as an ordered sum of 8 squarefree numbers. 7
1, 8, 36, 112, 274, 568, 1072, 1912, 3263, 5280, 8128, 12048, 17474, 24824, 34428, 46600, 62163, 82160, 107452, 138392, 176116, 222560, 279756, 348168, 428954, 524848, 639976, 775448, 932376, 1113808, 1326748, 1573656, 1855767, 2175728, 2544048, 2965280, 3441568, 3974744, 4580060 (list; graph; refs; listen; history; text; internal format)
OFFSET
8,2
LINKS
FORMULA
G.f.: (Sum_{k>=1} mu(k)^2 * x^k)^8.
MAPLE
b:= proc(n, t) option remember;
`if`(n=0, `if`(t=0, 1, 0), `if`(t<1, 0, add(
`if`(numtheory[issqrfree](j), b(n-j, t-1), 0), j=1..n)))
end:
a:= n-> b(n, 8):
seq(a(n), n=8..46); # Alois P. Heinz, Feb 04 2021
MATHEMATICA
nmax = 46; CoefficientList[Series[Sum[MoebiusMu[k]^2 x^k, {k, 1, nmax}]^8, {x, 0, nmax}], x] // Drop[#, 8] &
CROSSREFS
Sequence in context: A325656 A357716 A341987 * A092365 A014343 A162596
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Feb 04 2021
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 May 11 03:52 EDT 2024. Contains 372388 sequences. (Running on oeis4.)