OFFSET
0,2
COMMENTS
a(n) is the number of integers k <= 10^n with mu(k)=-1 where mu(k) is the Möbius function.
EXAMPLE
a(1) = 4 because there are 4 squarefree integers with an odd number of prime factors <= 10: 2, 3, 5, 7.
MATHEMATICA
Table[Length@Select[Range[10^n], MoebiusMu@#==-1&], {n, 0, 6}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Giorgos Kalogeropoulos, Oct 30 2021
STATUS
approved