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.

A153041 Numbers n >=10 such that 2*n-19 is not a prime.

Original entry on oeis.org

10, 14, 17, 20, 22, 23, 26, 27, 29, 32, 34, 35, 37, 38, 41, 42, 44, 47, 48, 50, 52, 53, 55, 56, 57, 59, 62, 65, 67, 68, 69, 70, 71, 72, 74, 76, 77, 80, 81, 82, 83, 86, 87, 89, 90, 92, 94, 95, 97, 98, 101, 102, 103, 104
Offset: 1

Views

Author

Vincenzo Librandi, Dec 17 2008

Keywords

Comments

One more than associated values in A153051, two more than A153047. - R. J. Mathar, Jan 05 2011
The terms after a(1) are the values of 2*h*k + k + h + 10, where h and k are positive integers.- Vincenzo Librandi, Jan 19 2013

Crossrefs

Numbers n such that 2n-k is not prime: A104275 (k=1), A153043 (k=3), A153040 (k=5), A153039 (k=7), A153044 (k=9), A153045 (k=11), A153049 (k=13), A153047 (k=15), A153051 (k=17), A153041 (k=19).
Similar sequence listed also in A089559, A153144.

Programs

  • Magma
    [n: n in [10..150] | not IsPrime(2*n - 19)]; // Vincenzo Librandi, Jan 19 2013
  • Mathematica
    Select[Range[10, 200], !PrimeQ[2 # - 19] &] (* Vincenzo Librandi, Jan 19 2013 *)

Extensions

Edited by N. J. A. Sloane, Jun 22 2010

A154631 Triangle read by rows: T(m,n) = 2mn + m + n + 5.

Original entry on oeis.org

9, 12, 17, 15, 22, 29, 18, 27, 36, 45, 21, 32, 43, 54, 65, 24, 37, 50, 63, 76, 89, 27, 42, 57, 72, 87, 102, 117, 30, 47, 64, 81, 98, 115, 132, 149, 33, 52, 71, 90, 109, 128, 147, 166, 185, 36, 57, 78, 99, 120, 141, 162, 183, 204, 225, 39, 62, 85, 108, 131, 154
Offset: 1

Views

Author

Vincenzo Librandi, Jan 17 2009

Keywords

Comments

All terms are in A153044. - Vincenzo Librandi, Aug 30 2012

Examples

			Triangle begins:
9;
12, 17;
15, 22, 29;
18, 27, 36, 45;
21, 32, 43, 54, 65;
24, 37, 50, 63, 76, 89;
27, 42, 57, 72, 87, 102, 117;
30, 47, 64, 81, 98, 115, 132, 149;
33, 52, 71, 90, 109, 128, 147, 166, 185;
36, 57, 78, 99, 120, 141, 162, 183, 204, 225;
		

Crossrefs

Programs

  • Magma
    /* Triangle: */ [[2*m*n+m+n+5: m in [1..n]]: n in [1..10]]; // Bruno Berselli, Aug 31 2012
  • Mathematica
    Flatten[Table[2 n m + m + n + 5, {n, 10}, {m, n}]] (* Vincenzo Librandi, Aug 30 2012 *)

Extensions

Minor edits by Jon E. Schoenfield, Jun 23 2010
Showing 1-2 of 2 results.