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.

A100930 Semiprimes of the form (2*p+1)*(p-1)/2, p prime.

Original entry on oeis.org

22, 115, 517, 6847, 31951, 128701, 516601, 1037851, 2070001, 4156501, 4254937, 6045451, 7945351, 8425957, 8777887, 9137017, 13124317, 14278951, 14460907, 14920837, 24194101, 29146501, 31795501, 47592751, 48758797, 50108701
Offset: 1

Views

Author

Reinhard Zumkeller, Nov 22 2004

Keywords

Comments

a(n) = (2*A059455(n)^2 - A059455(n) - 1) / 2.

Crossrefs

Subsequence of A100929.

Programs

  • Mathematica
    Select[Table[((2p+1)(p-1))/2,{p,Prime[Range[2000]]}],PrimeOmega[#]==2&] (* Harvey P. Dale, Apr 13 2020 *)