OFFSET
1,1
COMMENTS
The primitive indices are 18, 48, 60, 84, 132, 210, etc. It would be interesting to find the first index not a multiple of 6.
LINKS
Hiroaki Yamanouchi, Table of n, a(n) for n = 1..92
EXAMPLE
a(1)=18 since (10^18-1)/9 is abundant (abundancy ~ 2.09).
MATHEMATICA
Select[Range@ 60, DivisorSigma[1, (10^# - 1)/9] > 2 (10^# - 1)/9 &] (* Michael De Vlieger, Sep 08 2015 *)
PROG
(PARI) is(n)=sigma(10^n\9, -1)>2 \\ Charles R Greathouse IV, Sep 07 2015
CROSSREFS
KEYWORD
nonn
AUTHOR
Sergio Pimentel, Sep 07 2015
EXTENSIONS
a(27)-a(54) from Hiroaki Yamanouchi, Oct 13 2015
STATUS
approved