OFFSET
1,2
COMMENTS
Below n=5x10^11, q=5 and 17 quotients do not appear; smallest numbers providing integer quotients = 1, 2, 3, 4,..., 16,... are as follows: 1, 2, 8, 15, _?_, 42, 24, 60, 168, 480, 57669920, 2200380, 57120, 217278, 1058148, 7526400, ... - updated by Jud McCranie, Feb 08 2012
The above sequence is now A272930. - Franklin T. Adams-Watters, May 11 2016
See A019278 for the actual numbers x such that x | sigma(sigma(x)). - M. F. Hasler, Jul 03 2016
LINKS
Jud McCranie and Giovanni Resta, Table of n, a(n) for n = 1..145 (first 130 terms from Jud McCranie)
FORMULA
MAPLE
with(numtheory): A098223:=n->`if`(sigma(sigma(n)) mod n = 0, sigma(sigma(n))/n, NULL): seq(A098223(n), n=1..10^5); # Wesley Ivan Hurt, Oct 10 2014
MATHEMATICA
Select[DivisorSigma[1, DivisorSigma[1, #]]/# &@ Range[10^6], IntegerQ] (* Michael De Vlieger, May 11 2016 *)
PROG
(PARI) for(n=1, 1e7, sigma(sigma(n))%n||print1(sigma(sigma(n))/n", ")) \\ M. F. Hasler, Jul 03 2016
CROSSREFS
KEYWORD
nonn
AUTHOR
Labos Elemer, Oct 25 2004
STATUS
approved