OFFSET
1,1
COMMENTS
Conjectures: a. Sequence is infinite. b. There are infinitely many consecutive pairs, such as (5:6), (11:12), (17:18), (53:54), ... (204005:204006).
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
53 is a term because 52, 51, 49, 45, 37 and 21 are all deficient numbers.
MATHEMATICA
aQ[n_] := AllTrue[n - 2^Range[0, Floor[Log2[n]]], # == 0 || DivisorSigma[1, #] < 2 # &]; Select[Range[2, 186], aQ] (* Amiram Eldar, Sep 21 2019 *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Jason Earls, Jul 22 2005
STATUS
approved