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.

A180945 Primes of the form prime(i)*prime(i+1) + prime(i+2) + 1.

Original entry on oeis.org

23, 47, 241, 347, 467, 937, 1811, 2551, 4159, 4831, 5851, 9901, 11131, 11777, 25759, 37061, 53597, 78121, 79817, 83227, 90263, 95791, 145547, 164429, 171793, 245513, 305243, 314161, 325477, 372709, 391231, 436273, 485101, 497729, 569269, 609149
Offset: 1

Views

Author

Carmine Suriano, Sep 27 2010

Keywords

Examples

			a(7) = 1811 = 41*43 + 47 + 1.
		

Crossrefs

Programs

  • Mathematica
    Select[#[[1]]*#[[2]]+#[[3]]+1&/@Partition[Prime[Range[150]],3,1],PrimeQ] (* Harvey P. Dale, Oct 19 2012 *)