A049053 Numbers k such that k through k+6 all have the same number of divisors.
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
Keywords
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000 (terms 1..1000 from Donovan Johnson)
- Jean-Marie De Koninck, Those Fascinating Numbers, Amer. Math. Soc., 2009, page 244.
Crossrefs
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
Comments