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.

Showing 1-2 of 2 results.

A275516 Table read by rows: list of prime triples of the form (p, p+4, p+6).

Original entry on oeis.org

7, 11, 13, 13, 17, 19, 37, 41, 43, 67, 71, 73, 97, 101, 103, 103, 107, 109, 193, 197, 199, 223, 227, 229, 277, 281, 283, 307, 311, 313, 457, 461, 463, 613, 617, 619, 823, 827, 829, 853, 857, 859, 877, 881, 883, 1087, 1091, 1093, 1297, 1301, 1303, 1423, 1427, 1429
Offset: 1

Views

Author

Arkadiusz Wesolowski, Jul 31 2016

Keywords

Comments

A prime triple is a set of three prime numbers of the form (p, p+2, p+6) or (p, p+4, p+6).
Initial members p of prime triples of the form (p, p+4, p+6) are congruent to 7 or 13 (mod 30).
Also called prime triples of the second kind.

Examples

			The table starts:
7, 11, 13;
13, 17, 19;
37, 41, 43;
...
		

Crossrefs

Programs

  • Magma
    &cat[[p, p+4, p+6]: p in PrimesUpTo(1423) | p mod 30 in {7, 13} and IsPrime(p+4) and IsPrime(p+6)];
  • Mathematica
    Prime@ Range[#, # + 2] &@ PrimePi@ Select[Prime@ Range@ 240, Times @@ Boole@ PrimeQ[# + {4, 6}] > 0 &] // Flatten (* Michael De Vlieger, Aug 02 2016 *)

Formula

a(3*n-2) = A022005(n).

A275519 Decimal expansion of sum of reciprocals of all prime triples.

Original entry on oeis.org

1, 9, 3, 4, 9, 6, 4, 2, 5, 2
Offset: 1

Views

Author

Arkadiusz Wesolowski, Jul 31 2016

Keywords

Examples

			1.934964252....
		

Crossrefs

Formula

Equals 1.934964252... = (1/5 + 1/7 + 1/11) + (1/7 + 1/11 + 1/13) + (1/11 + 1/13 + 1/17) + ....
Showing 1-2 of 2 results.