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.

A118593 Larger member of twin prime pairs whose sum is a square.

Original entry on oeis.org

19, 73, 883, 1153, 2593, 3529, 4051, 15139, 20809, 34849, 46819, 69193, 83233, 103969, 112339, 149059, 176419, 180001, 206083, 281251, 362953, 388963, 438049, 472393, 478243, 538723, 649801, 734473, 808993, 960499, 1080451, 1143073
Offset: 1

Views

Author

Cino Hilliard, May 08 2006

Keywords

Examples

			17 and 19 are twin primes whose sum is 36, a square, so 19 is a term in this sequence.
		

Crossrefs

Programs

  • Mathematica
    Transpose[Select[Partition[Prime[Range[200000]],2,1],#[[2]]-#[[1]]==2 && IntegerQ[Sqrt[Total[#]]]&]][[2]] (* Harvey P. Dale, Jul 29 2014 *)
  • PARI
    g(n) = for(x=1,n,p1=prime(x);p2=prime(x+1);if(p2-p1==2&issquare(p1+p2),print1(p2",")))

Formula

a(n) = A069496(n) + 2.