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.

A173470 Semiprimes in A023037.

Original entry on oeis.org

85, 781, 137257, 28531167061
Offset: 1

Views

Author

Keywords

Comments

The terms a(5) etc. have at least 63 digits (if they exist), so the pattern of terms does not continue as in A001039. [From R. J. Mathar, Feb 27 2010]

Programs

  • Mathematica
    f1[n_]:=Module[{s=0},Do[s+=n^a,{a,0,n-1}];s]; f2[n_]:=Last/@FactorInteger[n]=={1,1}||Last/@FactorInteger[n]=={2}; Select[Table[f1[n],{n,50}],f2[ # ]&]