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.

A217736 Sum of first n squares of semiprimes.

Original entry on oeis.org

16, 52, 133, 233, 429, 654, 1095, 1579, 2204, 2880, 3969, 5125, 6350, 7794, 9315, 11431, 13832, 16433, 19458, 22707, 26071, 29915, 34140, 38901, 44377, 50306, 57030, 64255, 71651, 79220, 87501, 96150, 104986, 114011, 125247, 137568, 150793, 164717, 178878
Offset: 1

Views

Author

Keywords

Comments

There are 68 such numbers less than one million; a(68) = 988849.

Examples

			a(3) = 4^2 + 6^2 + 9^2 = 133.
		

Crossrefs

Cf. A062198. Equals sum(A001358^2), and sum(A074985).

Programs

  • Mathematica
    Accumulate[Select[Range[200],PrimeOmega[#]==2&]^2] (* Harvey P. Dale, Mar 13 2018 *)