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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A038843 Super unitary perfect numbers: usigma(usigma(n)) = 2*n, where if n = Product p(i)^r(i) then usigma(n) = Product (p(i)^r(i)+1). 2
2, 9, 165, 238, 1640, 4320, 10250, 10824, 13500, 23760, 58500, 66912, 425880, 520128, 873180, 931392, 1899744, 2129400, 2253888, 3276000, 4580064, 4668300, 13722800, 15459840, 40360320, 201801600, 439021440 (list; graph; refs; listen; history; internal format)
OFFSET

0,1

COMMENTS

May be called (2,2)-unitary perfect numbers, analogous to (k,l)-perfect numbers.

LINKS

Eric Weisstein's World of Mathematics, Link to a section of The World of Mathematics.

MATHEMATICA

usigma[n_] := Times @@ (Apply[ Power, FactorInteger[n], {1}] + 1); n = 1; A038843 = {}; While[n < 10^7, If[ usigma[ usigma[n] ] == 2n, Print[n]; AppendTo[ A038843, n] ]; n++]; A038843 (* From Jean-François Alcover, Dec 07 2011 *)

PROG

(PARI) {usigma(n, s=1, fac, i)= fac=factor(n); for(i=1, matsize(fac)[1], s=s*(1+fac[i, 1]^fac[i, 2]) ); return(s); } for(n=1, 10^7, if(usigma(usigma(n))==2*n, print1(n, ", ")))

CROSSREFS

Cf. A038843, A034448.

Sequence in context: A133468 A182948 A081459 * A053294 A199695 A078524

Adjacent sequences:  A038840 A038841 A038842 * A038844 A038845 A038846

KEYWORD

nonn,nice

AUTHOR

Yasutoshi Kohmoto (zbi74583(AT)boat.zero.ad.jp)

EXTENSIONS

Corrected by Jason Earls (zevi_35711(AT)yahoo.com), Aug 25 2001. More terms from Jud McCranie (JudMcCranie(AT)ugaalum.uga.edu), Oct 28 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 23:53 EST 2012. Contains 205689 sequences.