A088725 Numbers having no divisors d>1 such that also d+1 is a divisor.
1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 19, 21, 22, 23, 25, 26, 27, 28, 29, 31, 32, 33, 34, 35, 37, 38, 39, 41, 43, 44, 45, 46, 47, 49, 50, 51, 52, 53, 55, 57, 58, 59, 61, 62, 63, 64, 65, 67, 68, 69, 70, 71, 73, 74, 75, 76, 77, 79, 81, 82, 83, 85, 86, 87, 88, 89, 91
Offset: 1
Keywords
Examples
From _Gus Wiseman_, Oct 16 2019: (Start) The sequence of terms together with their divisors > 1 begins: 1: {} 2: {2} 3: {3} 4: {2,4} 5: {5} 7: {7} 8: {2,4,8} 9: {3,9} 10: {2,5,10} 11: {11} 13: {13} 14: {2,7,14} 15: {3,5,15} 16: {2,4,8,16} 17: {17} 19: {19} 21: {3,7,21} 22: {2,11,22} 23: {23} 25: {5,25} (End)
Crossrefs
Programs
-
Mathematica
Select[Range[100],FreeQ[Differences[Rest[Divisors[#]]],1]&] (* Harvey P. Dale, Sep 16 2017 *)
-
PARI
isok(n) = {my(d=setminus(divisors(n), [1])); #setintersect(d, apply(x->x+1, d)) == 0;} \\ Michel Marcus, Oct 28 2019
Formula
A088722(a(n)) = 0.
Extensions
Extended by Ray Chandler, May 29 2008
Comments