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.

A155945 Numbers n such that 24*n + 13 is not prime.

Original entry on oeis.org

3, 5, 8, 10, 12, 13, 18, 19, 20, 21, 23, 24, 26, 28, 32, 33, 37, 38, 39, 40, 43, 47, 48, 49, 52, 53, 54, 55, 56, 58, 61, 62, 63, 65, 68, 71, 73, 75, 76, 78, 79, 81, 82, 83, 86, 87, 88, 89, 90, 91, 93, 96, 98, 100
Offset: 1

Views

Author

Vincenzo Librandi, Jan 31 2009

Keywords

Examples

			Distribution of the terms in the following triangular array:
*;
*,*;
*,*,*;
*,*,*,*;
*,*,*,*,*;
*,*,*,*,*,*;
*,*,*,*,*,*,*;
*,3,*,*,*,*,*,*;
*,*,5,*,*,*,*,*,*;
*,*,*,*,*,*,*,*,*,*;
*,*,*,*,10,*,*,*,*,*,*;
*,*,*,*,*,13,*,*,*,*,*,*; etc.
where * marks the non-integer values of (2*h*k + k + h - 6)/12 with h >= k >= 1. - _Vincenzo Librandi_, Jan 15 2013
		

Crossrefs

Programs

  • Magma
    [n: n in [0..100] |not IsPrime(24*n + 13)]; // Vincenzo Librandi, Oct 15 2012
  • Mathematica
    Select[Range[0, 100], !PrimeQ[24 # + 13] &] (* Vincenzo Librandi, Oct 15 2012 *)