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.

A153327 Numbers n such that 16*n+5 is not prime.

Original entry on oeis.org

1, 4, 5, 7, 8, 10, 13, 15, 16, 19, 20, 21, 22, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 43, 45, 46, 49, 50, 52, 54, 55, 56, 57, 58, 59, 60, 61, 64, 65, 67, 70, 71, 72, 73, 74, 75, 76, 78, 79, 80, 82, 83, 84, 85, 87, 88, 90, 91, 92, 94, 95, 96, 97, 98, 99, 100
Offset: 1

Views

Author

Vincenzo Librandi, Dec 23 2008

Keywords

Examples

			Distribution of the terms in the following triangular array:
*;
*,*;
1,*,*;
*,*,*,*;
*,*,*,*,*,;
*,*,*,7,*,*;
*,*,*,*,10,*,*;
*,5,*,*,*,*,*,*;
*,*,8,*,*,*,*,*,*;
*,*,*,*,*,*,*,22,*,*;
4,*,*,*,*,*,*,*,27*,*;
*,*,*,*,*,20,*,*,*,*,*,*;
*,*,*,*,*,*,25,*,*,*,*,*,*; etc.
where * marks the non-integer values of (2*h*k + k + h - 2)/8 with h >= k >= 1. - _Vincenzo Librandi_, Jan 17 2013
		

Crossrefs

Cf. A127590.

Programs

  • Magma
    [n: n in [0..150] | not IsPrime(16*n + 5)]; // Vincenzo Librandi, Jan 12 2013
  • Mathematica
    Select[Range[100], !PrimeQ[16# + 5]&] (* Harvey P. Dale, Oct 03 2011 *)