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.

A108926 Initial members of abundant quintuplets, i.e., values of k such that (k, k+2, k+4, k+6, k+8) are all abundant numbers.

Original entry on oeis.org

2988, 4728, 9724, 18844, 22984, 30544, 35148, 39948, 45048, 50464, 55788, 56808, 58056, 58780, 69184, 78048, 81948, 85744, 101148, 106144, 108256, 109248, 117124, 134088, 139744, 139804, 152568, 171288, 174348, 175908, 182644, 189768, 197028
Offset: 1

Views

Author

Jason Earls, Jul 19 2005

Keywords

Crossrefs

Programs

  • Mathematica
    SequencePosition[Table[If[DivisorSigma[1,n]>2n,1,0],{n,200000}],{1,,1,,1,,1,,1}][[All,1]] (* Harvey P. Dale, Mar 06 2022 *)
  • PARI
    is(n)=sigma(n,-1)>2 && sigma(n+2,-1)>2 && sigma(n+4,-1)>2 && sigma(n+6,-1)>2 && sigma(n+8,-1)>2 \\ Charles R Greathouse IV, Feb 21 2017