OFFSET
1,2
COMMENTS
Complement of A088723.
The numbers of terms not exceeding 10^k, for k = 1, 2, ..., are 9, 79, 778, 7782, 77813, 778055, 7780548, 77805234, 778052138, 7780519314, ... . Apparently, the asymptotic density of this sequence exists and equals 0.77805... . - Amiram Eldar, Jun 14 2022
FORMULA
A088722(a(n)) = 0.
EXAMPLE
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)
MATHEMATICA
Select[Range[100], FreeQ[Differences[Rest[Divisors[#]]], 1]&] (* Harvey P. Dale, Sep 16 2017 *)
PROG
(PARI) isok(n) = {my(d=setminus(divisors(n), [1])); #setintersect(d, apply(x->x+1, d)) == 0; } \\ Michel Marcus, Oct 28 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Oct 12 2003
EXTENSIONS
Extended by Ray Chandler, May 29 2008
STATUS
approved