login
A074794
Number of numbers k <= n such that tau(k) == 1 (mod 3) where tau(k) = A000005(k) is the number of divisors of k.
4
1, 1, 1, 1, 1, 2, 2, 3, 3, 4, 4, 4, 4, 5, 6, 6, 6, 6, 6, 6, 7, 8, 8, 8, 8, 9, 10, 10, 10, 10, 10, 10, 11, 12, 13, 13, 13, 14, 15, 15, 15, 15, 15, 15, 15, 16, 16, 17, 17, 17, 18, 18, 18, 18, 19, 19, 20, 21, 21, 21, 21, 22, 22, 23, 24, 24, 24, 24, 25, 25, 25, 25, 25, 26, 26, 26, 27, 27
OFFSET
1,6
LINKS
FORMULA
a(n) is asymptotic to c*n with c = 0.36....
The constant is conjecturally 3*zeta(3)/Pi^2 = 0.3653814847007... (A346602). See A211337 for more details. - Amiram Eldar, Feb 01 2025
MATHEMATICA
Accumulate[Table[Boole[Mod[DivisorSigma[0, n], 3] == 1], {n, 1, 100}]] (* Amiram Eldar, Aug 29 2020 *)
PROG
(PARI) a(n)=sum(k=1, n, if(numdiv(k)%3-1, 0, 1))
CROSSREFS
KEYWORD
nonn
AUTHOR
Benoit Cloitre, Sep 07 2002
STATUS
approved