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!)
A231092 Initial members of abundant septuplets, i.e., values of n such that (n, n+2, n+4, n+6, n+8, n+10, n+12) are all abundant numbers. 7
221355126, 221355128, 402640540, 402640542, 668862580, 668862582, 739577140, 739577142, 1415514246, 1415514248, 1598558646, 1598558648, 1678915540, 1678915542, 1714512246, 1714512248, 1812156340, 1812156342, 1829740086, 1829740088, 1892686326, 1892686328 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
221355126, 221355128, 221355130, 221355132, 221355134, 221355136, 221355138 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 > 6, AppendTo[a, n - 12]], m = 0], {n, 2, 2000000000, 2}]; a
PROG
(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 && sigma(n+10, -1)>2 && sigma(n+12, -1)>2 \\ Charles R Greathouse IV, Feb 21 2017
CROSSREFS
Sequence in context: A268313 A268314 A231630 * A228965 A231093 A262559
KEYWORD
nonn
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 March 29 07:27 EDT 2024. Contains 371265 sequences. (Running on oeis4.)