A341070 Number of ways to write n as an ordered sum of 10 squarefree numbers.
1, 10, 55, 210, 625, 1552, 3400, 6840, 12960, 23330, 40028, 65740, 104230, 160670, 241640, 354772, 509620, 718980, 999645, 1370720, 1853903, 2476250, 3274110, 4289810, 5568820, 7162184, 9138045, 11579180, 14574755, 18215900, 22619016, 27929990, 34311845, 41921710, 50946945
Offset: 10
Keywords
Crossrefs
Programs
-
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, 10): seq(a(n), n=10..44); # Alois P. Heinz, Feb 04 2021
-
Mathematica
nmax = 44; CoefficientList[Series[Sum[MoebiusMu[k]^2 x^k, {k, 1, nmax}]^10, {x, 0, nmax}], x] // Drop[#, 10] &
Formula
G.f.: (Sum_{k>=1} mu(k)^2 * x^k)^10.