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.

A114080 Numbers k such that sigma(k) times the k-th prime is a brilliant number (A078972).

Original entry on oeis.org

2, 4, 9, 16, 25, 64, 729, 65536
Offset: 1

Views

Author

Giovanni Resta, Feb 13 2006

Keywords

Comments

No additional terms up to 1 million. - Harvey P. Dale, Nov 13 2013

Examples

			sigma(25) * p(25) = 3007 = 31*97.
		

Programs

  • Mathematica
    brilQ[n_]:=Module[{pf=Transpose[FactorInteger[n]][[1]]},PrimeOmega[n] == 2&&IntegerLength[First[pf]]==IntegerLength[Last[pf]]]; Select[Range[ 100000], brilQ[DivisorSigma[1,#]Prime[#]]&] (* Harvey P. Dale, Nov 13 2013 *)