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.

A103746 Numbers n such that prime(n)*prime(n+1) - 1 is semiprime.

Original entry on oeis.org

2, 3, 5, 10, 13, 20, 33, 60, 89, 109, 116, 138, 144, 152, 182, 189, 212, 223, 253, 258, 297, 320, 336, 350, 353, 375, 390, 418, 422, 487, 492, 498, 501, 549, 567, 579, 592, 616, 654, 671, 704, 755, 799, 800, 812, 826, 874, 893, 917, 921, 948, 951, 957, 967
Offset: 1

Views

Author

Klaus Brockhaus, Mar 29 2005

Keywords

Examples

			prime(10)*prime(11) - 1 = 29*31 - 1 = 898 = 2*449, hence 10 is a term.
		

Crossrefs

Programs

  • PARI
    for(n=1,1000,if(bigomega(prime(n)*prime(n+1)-1)==2,print1(n,",")))