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.

A096218 Primes of the form 3*prime(n) + 2*prime(n+1).

Original entry on oeis.org

19, 29, 43, 59, 73, 89, 103, 127, 149, 167, 193, 223, 277, 317, 359, 461, 509, 523, 593, 643, 797, 823, 877, 1019, 1123, 1153, 1297, 1327, 1367, 1409, 1493, 1543, 1559, 1613, 1667, 1753, 1777, 1811, 1847, 1877, 1993, 2099, 2203, 2293, 2309, 2411, 2503, 2609
Offset: 1

Views

Author

Giovanni Teofilatto, Jul 28 2004

Keywords

Examples

			43 is in the sequence because 3*7 + 2*11 = 43.
		

Crossrefs

Cf. A096902 for values of n.

Programs

  • Mathematica
    Select[ 3Prime[Range[100]] + 2Prime[Range[2, 101]], PrimeQ[ # ] &] (* Robert G. Wilson v, Jul 31 2004 *)
    Select[3First[#]+2Last[#]&/@Partition[Prime[Range[100]],2,1],PrimeQ] (* Harvey P. Dale, Jan 03 2012 *)

Extensions

More terms from Ray Chandler and Robert G. Wilson v, Jul 31 2004