The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A069928 Number of k, 1<=k<=n, such that tau(k) divides sigma(k) where tau(x) is the number of divisors of x and sigma(x) the sum of divisors of x. 3
1, 1, 2, 2, 3, 4, 5, 5, 5, 5, 6, 6, 7, 8, 9, 9, 10, 10, 11, 12, 13, 14, 15, 15, 15, 15, 16, 16, 17, 18, 19, 19, 20, 20, 21, 21, 22, 23, 24, 24, 25, 26, 27, 28, 29, 30, 31, 31, 32, 32, 33, 33, 34, 35, 36, 37, 38, 38, 39, 40, 41, 42, 42, 42, 43, 44, 45, 46, 47, 48, 49, 49, 50, 50 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Number of arithmetic numbers <= n, cf. A003601; partial sums of A245656. - Reinhard Zumkeller, Jul 28 2014
LINKS
FORMULA
a(n)=Card(k: 1<=k<=n : sigma(k) == 0 (mod tau(k) ) : lim n -> infinity a(n)/n=C=0, 8...
MATHEMATICA
Accumulate[Table[If[Divisible[DivisorSigma[1, n], DivisorSigma[0, n]], 1, 0], {n, 80}]] (* Harvey P. Dale, Oct 06 2020 *)
PROG
(PARI) for(n=1, 150, print1(sum(i=1, n, if(sigma(i)%numdiv(i), 0, 1)), ", "))
(Haskell)
a069928 n = a069928_list !! (n-1)
a069928_list = scanl1 (+) a245656_list
-- Reinhard Zumkeller, Jul 28 2014
CROSSREFS
Sequence in context: A342880 A337774 A371263 * A135585 A081094 A361674
KEYWORD
easy,nonn
AUTHOR
Benoit Cloitre, May 05 2002
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 15 14:34 EDT 2024. Contains 372540 sequences. (Running on oeis4.)