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.

A049053 Numbers k such that k through k+6 all have the same number of divisors.

Original entry on oeis.org

171893, 180965, 647381, 1039493, 1071829, 1450261, 1563653, 1713413, 2129029, 2384101, 4704581, 4773301, 5440853, 5775365, 6627061, 6644405, 6697253, 8556661, 8833429, 10531253, 12101509, 12238453, 12307141, 13416661, 13970405
Offset: 1

Views

Author

Keywords

Comments

Allan Swett found that the first term not congruent to 5 mod 16 is 67073285. - Ralf Stephan, Nov 15 2004
Since A119479(n) < 7 for n < 8, no term has fewer than 8 divisors; the first that has more is a(30)=17476613. - Ivan Neretin, Feb 05 2016

Crossrefs

Other runs of equidivisor numbers: A005237 (runs of 2), A005238 (runs of 3), A006601 (runs of 4), A049051 (runs of 5), A049052 (runs of 6).

Programs

  • PARI
    isok(n) = {my(nb = numdiv(n)); for (k=1, 6, if (numdiv(n+k) != nb, return (0));); 1;} \\ Michel Marcus, Feb 06 2016