[go: up one dir, main page]

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”).

A377786
Numbers k such that 5^sigma(k) - k is a prime.
0
4, 524, 7206, 11156
OFFSET
1,1
EXAMPLE
4 is in the sequence because 5^sigma(4) - 4 = 5^7 - 4 = 78121 is prime.
MATHEMATICA
a[n_] := Select[Range@ n, PrimeQ[5^DivisorSigma[1, #] - #] &]; a[20000]
DeleteCases[ParallelTable[If[PrimeQ[5^DivisorSigma[1, k]-k], k, n], {k, 1, 10^4}], n]
PROG
(Magma) [n: n in[1..10000] | IsPrime((5^SumOfDivisors(n)) - n)];
KEYWORD
nonn,more
AUTHOR
EXTENSIONS
a(4) from Michael S. Branicky, Nov 11 2024
STATUS
approved