OFFSET
1,1
COMMENTS
The first occurrence of 1, 2, 3, 4, 5 and 6 is at n = 1432, 2, 231, 3, 1335014838 and 1, respectively. There are no terms larger than 6. - Amiram Eldar, Feb 22 2023
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000 (terms 1..1000 from Harry J. Smith)
EXAMPLE
a(1) = gcd(12, 18) = 6.
MATHEMATICA
GCD @@@ Partition[Select[Range[400], DivisorSigma[-1, #] > 2 &], 2, 1] (* Amiram Eldar, Feb 22 2023 *)
PROG
(PARI) { x=12; for (n=1, 1000, y=x+1; until (sigma(y) > 2*y, y++); write("b061496.txt", n, " ", gcd(x, y)); x=y ) } \\ Harry J. Smith, Jul 23 2009
CROSSREFS
KEYWORD
nonn
AUTHOR
Jason Earls, Jun 12 2001
EXTENSIONS
Corrected and extended by Jason G. Wurtzel, Nov 21 2006
More terms from Sean A. Irvine, Feb 18 2023
STATUS
approved