cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-3 of 3 results.

A336595 Numbers whose number of divisors is divisible by 5.

Original entry on oeis.org

16, 48, 80, 81, 112, 144, 162, 176, 208, 240, 272, 304, 324, 336, 368, 400, 405, 432, 464, 496, 512, 528, 560, 567, 592, 624, 625, 648, 656, 688, 720, 752, 784, 810, 816, 848, 880, 891, 912, 944, 976, 1008, 1040, 1053, 1072, 1104, 1134, 1136, 1168, 1200, 1232
Offset: 1

Views

Author

Amiram Eldar, Jul 26 2020

Keywords

Comments

The asymptotic density of this sequence is 1 - zeta(5)/zeta(4) = 0.0419426259... (Sathe, 1945).

Examples

			16 is a term since A000005(16) = 5 is divisible by 5.
		

References

  • G. H. Hardy, Ramanujan: twelve lectures on subjects suggested by his life and work, Cambridge, University Press, 1940, p. 63.

Crossrefs

Programs

  • Maple
    q:= n-> is(irem(numtheory[tau](n), 5)=0):
    select(q, [$1..1300])[];  # Alois P. Heinz, Jul 26 2020
  • Mathematica
    Select[Range[1300], Divisible[DivisorSigma[0, #], 5] &]

Formula

A030514 UNION A030628 \ {1} UNION A030633 UNION A030638 UNION A137488 UNION A137493 UNION A175745 UNION A175749 UNION A175752 UNION A175756 UNION ... - R. J. Mathar, May 05 2023

A175751 Numbers with 44 divisors.

Original entry on oeis.org

15360, 21504, 27648, 33792, 35840, 39936, 52224, 56320, 58368, 66560, 70656, 78848, 87040, 89088, 93184, 95232, 97280, 113664, 117760, 121856, 125952, 128000, 132096, 136192, 144384, 146432, 148480, 158720, 162816, 164864, 181248, 187392
Offset: 1

Views

Author

Jaroslav Krizek, Aug 27 2010

Keywords

Comments

Numbers of the forms p^43, p^21*q^1, p^10*q^3 and p^10*q^1*r^1, where p, q, and r are distinct primes.

Crossrefs

Programs

Formula

A000005(a(n))=44.

A274811 Numbers n such that n and n+1 both have 40 divisors.

Original entry on oeis.org

458864, 614384, 879375, 948752, 1003023, 1057455, 1080624, 1083375, 1101680, 1171664, 1174095, 1207791, 1271295, 1275344, 1283120, 1346960, 1420496, 1428272, 1460624, 1477359, 1524015, 1562895, 1609712, 1677104, 1686015, 1827440
Offset: 1

Views

Author

Keywords

Crossrefs

Intersection of A005237 and A175749.

Programs

  • PARI
    is(n)=numdiv(n)==40 && numdiv(n+1)==40
Showing 1-3 of 3 results.