login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A063103 Numbers n such that sigma(usigma(n) is prime. 2
3, 8, 2667, 3937, 57337, 172011, 253921 (list; graph; refs; listen; history; internal format)
OFFSET

1,1

EXAMPLE

n=8: usigma(8) = 9 and sigma(9) = 13, a prime. n=2667: usigma(2667) = 4096 and sigma(4096) = 8191, a prime.

MATHEMATICA

us[n_Integer] := (d = Divisors[n]; l = Length[d]; k = 1; s = n; While[k < l, If[ GCD[ d[[k]], n/d[[k]] ] == 1, s = s + d[[k]]]; k++ ]; s); Do[m = n; If[ PrimeQ[ DivisorSigma[1, us[n]]], Print[n]], {n, 1, 10^7} ]

PROG

(PARI) u(n) = sumdiv(n, d, if(gcd(d, n/d)==1, d)); for(n=1, 10^7, if(isprime(sigma(u(n))), print(n)))

CROSSREFS

Cf. A034448, A063508.

Sequence in context: A081466 A092592 A162185 * A058847 A088110 A122759

Adjacent sequences:  A063100 A063101 A063102 * A063104 A063105 A063106

KEYWORD

nonn

AUTHOR

Jason Earls (zevi_35711(AT)yahoo.com), Aug 07 2001

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 14 07:16 EST 2012. Contains 205589 sequences.