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.

A153144 Numbers n such that 2*n+19 is not a prime.

Original entry on oeis.org

1, 3, 4, 7, 8, 10, 13, 15, 16, 18, 19, 22, 23, 25, 28, 29, 31, 33, 34, 36, 37, 38, 40, 43, 46, 48, 49, 50, 51, 52, 53, 55, 57, 58, 61, 62, 63, 64, 67, 68, 70, 71, 73, 75, 76, 78, 79, 82, 83, 84, 85, 88, 91, 92, 93, 94, 95, 97, 98, 99, 100, 101
Offset: 1

Views

Author

Vincenzo Librandi, Dec 19 2008

Keywords

Crossrefs

Numbers n such that 2n+k is not prime: A047845 (k=1), A153238 (k=3), A153052 (k=5), A153053 (k=7), A153723 (k=9), A153083 (k=11), A153082 (k=13), A241571 (k=15), A241572 (k=17), this sequence (k=19).

Programs

  • Magma
    [n: n in [1..120] | not IsPrime(2*n + 19)]; // Vincenzo Librandi, Dec 13 2012
  • Mathematica
    Select[Range[0, 500], !PrimeQ[2# + 19] &] (* Vincenzo Librandi, Dec 13 2012 *)

A155550 Triangle read by rows where T(m,n)=2*m*n + m + n - 6.

Original entry on oeis.org

-2, 1, 6, 4, 11, 18, 7, 16, 25, 34, 10, 21, 32, 43, 54, 13, 26, 39, 52, 65, 78, 16, 31, 46, 61, 76, 91, 106, 19, 36, 53, 70, 87, 104, 121, 138, 22, 41, 60, 79, 98, 117, 136, 155, 174, 25, 46, 67, 88, 109, 130, 151, 172, 193, 214, 28, 51, 74, 97, 120, 143, 166, 189, 212
Offset: 1

Views

Author

Vincenzo Librandi, Jan 24 2009

Keywords

Comments

Numbers n such that 2n+13 is not prime.
First column: A016777, second column: A016861, third column: A017029, fourth column: A017245. - Vincenzo Librandi, Nov 21 2012

Examples

			Triangle begins:
-2;
1,  6;
4,  11, 18;
7,  16, 25, 34;
10, 21, 32, 43, 54;
13, 26, 39, 52, 65,  78;
16, 31, 46, 61, 76,  91,  106;
19, 36, 53, 70, 87,  104, 121, 138;
22, 41, 60, 79, 98,  117, 136, 155, 174;
25, 46, 67, 88, 109, 130, 151, 172, 193, 214; etc.
		

Crossrefs

Programs

  • Magma
    [2*n*k + n + k - 6: k in [1..n], n in [1..11]]; // Vincenzo Librandi, Nov 21 2012
  • Mathematica
    t[n_,k_]:= 2 n*k + n + k - 6; Table[t[n, k], {n, 15}, {k, n}]//Flatten (* Vincenzo Librandi, Nov 21 2012 *)
Showing 1-2 of 2 results.