The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A047728 Intersection of A046985 and A033950: multiply perfect, refactorable numbers with integer average divisor dividing the number. 5
1, 672, 30240, 23569920, 45532800, 14182439040, 153003540480, 403031236608, 13661860101120, 154345556085770649600, 143573364313605309726720, 352338107624535891640320, 680489641226538823680000, 34384125938411324962897920, 156036748944739017459105792, 3638193973609385308194865152 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Colton proves that perfect numbers (A000396) cannot be refactorable.
LINKS
Simon Colton, Refactorable Numbers - A Machine Invention, J. Integer Sequences, Vol. 2 (1999), Article 99.1.2.
FORMULA
Let s1 = sigma(k) = A000203(k) be the sum of divisors of k and s0 = d(k) = A000005(k) be the number of divisors of k. Then, k is a term if s1/s0, (k * s0)/s1, s1/k, and k/s0 are all integers.
EXAMPLE
k = 45532800 is a term since s0 = d(k) = 384, s1 = sigma(k) = 571963392, and the four quotients s1/s0 = 474300, (k * s0)/s1 = 96, s1/k = 4 and k/s0 = 118580 are all integers.
MATHEMATICA
q[n_] := Module[{d = DivisorSigma[0, n], s = DivisorSigma[1, n]}, Divisible[s, n] && Divisible[n * d, s] && Divisible[s, d] && Divisible[n, d]]; Select[Range[31000], q] (* Amiram Eldar, May 09 2024 *)
PROG
(PARI) is(k) = {my(f = factor(k), s = sigma(f), d = numdiv(f)); !(s % k) && !((k * d) % s) && !(s % d) && !(k % d); } \\ Amiram Eldar, May 09 2024
CROSSREFS
Sequence in context: A340864 A331666 A245782 * A297123 A335254 A160209
KEYWORD
nonn,changed
AUTHOR
EXTENSIONS
a(7)-a(13) from Donovan Johnson, Apr 09 2010
Edited and a(14)-a(16) added by Amiram Eldar, May 09 2024
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 23 04:41 EDT 2024. Contains 372758 sequences. (Running on oeis4.)