login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A360524
Numbers k such that A360522(k) = 2*k.
1
6, 12, 198, 240, 264, 270, 396, 540, 6720, 7920, 11880, 13770, 27540, 221760, 337440, 605880, 2500344, 6072570, 11135520, 12145140, 267193080, 441692160, 1112629770, 2225259540, 14575841280, 48955709880
OFFSET
1,1
COMMENTS
Analogous to perfect numbers (A000396) with A360522 instead of A000203.
a(27) > 10^11, if it exists.
EXAMPLE
6 is a term since A360522(6) = 12 = 2 * 6.
MATHEMATICA
f[p_, e_] := p^e + e; q[n_] := Times @@ f @@@ FactorInteger[n] == 2*n; Select[Range[10^6], q]
PROG
(PARI) is(n) = {my(f = factor(n)); prod(i = 1, #f~, f[i, 1]^f[i, 2] + f[i, 2]) == 2*n; }
CROSSREFS
Similar sequences: A000396, A002827, A007357, A054979, A322486, A324707.
Sequence in context: A324980 A014402 A181493 * A051784 A158046 A097174
KEYWORD
nonn,more
AUTHOR
Amiram Eldar, Feb 10 2023
STATUS
approved