login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A231089 Initial members of abundant quadruplets, i.e., values of k such that (k, k+2, k+4, k+6) are all abundant numbers. 8
348, 1998, 2208, 2748, 2988, 2990, 3006, 3246, 3708, 3846, 4506, 4728, 4730, 5166, 6228, 7068, 7206, 7908, 8886, 9348, 9588, 9724, 9726, 11406, 13746, 14208, 14766, 17148, 17988, 18126, 18588, 18828, 18844, 18846, 19548, 20148, 20478, 21486, 22188, 22984 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000 (terms 1..5000 from Shyam Sunder Gupta)
EXAMPLE
348, 350, 352, 354 are abundant, thus the smallest number is listed.
MATHEMATICA
AbundantQ[n_] := DivisorSigma[1, n] > 2n; m = 0; a = {}; Do[If[AbundantQ[n], m = m + 1; If[m > 3, AppendTo[a, n - 6]], m = 0], {n, 2, 1000000, 2}]; a
SequencePosition[Table[If[DivisorSigma[1, n]>2n, 1, 0], {n, 23000}], {1, _, 1, _, 1, _, 1}][[All, 1]] (* Harvey P. Dale, Apr 02 2018 *)
PROG
(PARI) is(n)=sigma(n, -1)>2 && sigma(n+2, -1)>2 && sigma(n+4, -1)>2 && sigma(n+6, -1)>2 \\ Charles R Greathouse IV, Feb 21 2017
CROSSREFS
Sequence in context: A275237 A129642 A304837 * A237318 A237724 A054467
KEYWORD
nonn,changed
AUTHOR
Shyam Sunder Gupta, Nov 03 2013
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)