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.

A141259 a(n) == {0,1,3,4,5,7,9,11} mod 12; n>0.

Original entry on oeis.org

1, 3, 4, 5, 7, 9, 11, 12, 13, 15, 16, 17, 19, 21, 23, 24, 25, 27, 28, 29, 31, 33, 35, 36, 37, 39, 40, 41, 43, 45, 47, 48, 49, 51, 52, 53, 55, 57, 59, 60, 61, 63, 64, 65, 67, 69, 71, 72, 73, 75, 76, 77, 79, 81, 83, 84, 85, 87, 88, 89, 91, 93, 95, 96, 97, 99
Offset: 1

Views

Author

Gary W. Adamson, Jun 18 2008

Keywords

Comments

A141260 = characteristic function of A141259 such that A141260(n) = 1 if n is in A141259; 0 otherwise.

Examples

			a(16) = 24, == 0 mod 12.
		

Crossrefs

Cf. A141260.

Programs

  • Magma
    [n: n in [1..100]|n mod 12 in {0, 1, 3, 4, 5, 7, 9, 11}]; // Vincenzo Librandi, Feb 22 2014
  • Mathematica
    Select[Range[200],MemberQ[{0,1,3,4,5,7,9,11},Mod[#,12]]&] (* Harvey P. Dale, Feb 20 2014 *)

Formula

a(n) = {0,1,3,4,5,7,9,11} mod 12; n>0.
G.f. (1+x)*(x^5+x^3+1) / ( (x^2+1)*(x^4+1)*(x-1)^2 ). - R. J. Mathar, Nov 21 2011

Extensions

More terms from Harvey P. Dale, Feb 20 2014