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.

A113619 Heptagon-free numbers: numbers k such that no divisor of k is a heptagonal number > 1.

Original entry on oeis.org

1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 15, 16, 17, 19, 20, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 37, 38, 39, 40, 41, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 57, 58, 59, 60, 61, 62, 64, 65, 66, 67, 69, 71, 73, 74, 75, 76, 78, 79, 80, 82, 83, 85, 86, 87, 88, 89, 92, 93, 94, 95, 96, 97, 99, 100
Offset: 1

Views

Author

Jonathan Vos Post, Jan 14 2006

Keywords

Comments

Heptagonal number analogy of A112886 (the triangle-free positive integers).

Examples

			7 is the first nontrivial heptagonal number, so no multiple of 7 is a term.
		

Crossrefs

Programs

  • Mathematica
    upto=100;Module[{maxhep=Floor[(3+Sqrt[9+40upto])/10],heps}, heps= Rest[ Table[(n(5n-3))/2,{n,maxhep}]];Complement[Range[upto],Union[ Flatten[ Table[n*heps,{n,Ceiling[upto/7]}]]]]] (* Harvey P. Dale, May 19 2012 *)

Extensions

Corrected by Harvey P. Dale, May 19 2012