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.

A231094 Smallest starting abundant number for n consecutive even abundant numbers.

Original entry on oeis.org

12, 18, 100, 348, 2988, 801340, 221355126, 221355126, 895257140404
Offset: 1

Views

Author

Shyam Sunder Gupta, Nov 03 2013

Keywords

Examples

			a(6) = 801340 because 801340 is the starting abundant number for 6 consecutive even abundant numbers: 801340, 801342, 801344, 801346, 801348, 801350.
		

Crossrefs

Programs

  • Mathematica
    k = 2; cnt = 0; Table[While[If[abunQ[k], cnt++, cnt = 0]; cnt < n, k = k + 2]; k = k + 2; k - 2*n, {n, 6}] (* T. D. Noe, Nov 04 2013 *)

Extensions

a(9) from Donovan Johnson, Nov 07 2013