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.

A228963 Smallest sets of 6 consecutive abundant numbers in arithmetic progression. The initial abundant number is listed.

Original entry on oeis.org

228, 1002, 1242, 1248, 2328, 3348, 4182, 4362, 4428, 5202, 5268, 6702, 6708, 6882, 7962, 7968, 8142, 8382, 8982, 9822, 9888, 10242, 11568, 11922, 11988, 12162, 12168, 12588, 13248, 13422, 13842, 13848, 14022, 14088, 14508, 15282, 15522, 15528, 16362, 16368
Offset: 1

Views

Author

Shyam Sunder Gupta, Nov 10 2013

Keywords

Examples

			228, 234, 240, 246, 252, 258 is the smallest set of 6 consecutive abundant numbers in arithmetic progression so 228 is in the list.
		

Crossrefs

Programs

  • Mathematica
    AbundantQ[n_] := DivisorSigma[1, n] > 2 n; m = 2; z1 = 18; cd = 6; a = {}; Do[If[AbundantQ[n], If[n - z1 == cd, m = m + 1; If[m > 5, AppendTo[a, n - 5*cd]], m = 2; cd = n - z1]; z1 = n], {n, 19, 1000000}]; a