A343302 Numbers k such that k through k+4 are all deficient (in A005100).
1, 7, 13, 31, 43, 49, 61, 73, 91, 115, 121, 127, 133, 145, 151, 163, 169, 181, 187, 211, 229, 235, 241, 247, 253, 265, 283, 289, 295, 313, 325, 331, 343, 355, 373, 385, 403, 409, 421, 427, 433, 451, 469, 481, 505, 511, 523, 535, 553, 565, 583, 589, 595
Offset: 1
Keywords
Examples
115 is a term since all of 115, 116, 117, 118 and 119 are deficient. 2989 is not a term since 2989 + 3 = 2992 is an abundant number.
Links
- Jianing Song, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
Position[Partition[DivisorSigma[-1, Range[600]], 5, 1], ?(Max[#] < 2 &), 1] // Flatten (* _Amiram Eldar, Mar 21 2024 *) SequencePosition[Table[If[DivisorSigma[1,n]<2n,1,0],{n,600}],{1,1,1,1,1}][[;;,1]] (* Harvey P. Dale, Jul 16 2025 *)
-
PARI
isA343302(k) = if(k%6!=1, 0, for(i=0, 4, if( sigma(k+i) >= 2*(k+i), return(0) )); 1)
Comments