cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A377786 Numbers k such that 5^sigma(k) - k is a prime.

Original entry on oeis.org

4, 524, 7206, 11156
Offset: 1

Views

Author

J.W.L. (Jan) Eerland, Nov 11 2024

Keywords

Examples

			4 is in the sequence because 5^sigma(4) - 4 = 5^7 - 4 = 78121 is prime.
		

Crossrefs

Programs

  • Magma
    [n: n in[1..10000] | IsPrime((5^SumOfDivisors(n)) - n)];
  • 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]

Extensions

a(4) from Michael S. Branicky, Nov 11 2024