The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A228382 Abundant numbers that differ from the next abundant number by 3. 6
942, 945, 1572, 1575, 2202, 2205, 2832, 2835, 3462, 3465, 4092, 4095, 4722, 4725, 5352, 5355, 5772, 5985, 6432, 6435, 6612, 6615, 6822, 6825, 7242, 7245, 7425, 7872, 7875, 8082, 8085, 8412, 8415, 8502, 8505, 8922, 8925, 9132, 9135, 9552, 9555, 9762, 9765 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Apparently these numbers come up mostly by pairs m, m+3 with m even; the odd terms being a subsequence of A005231. But this is not always the case (e.g., note the term 7425).
The numbers of terms not exceeding 10^k, for k = 3, 4, ..., are 2, 43, 393, 3635, 37599, 374092, 3731903, 37338208, 373256850, ... . Apparently, the asymptotic density of this sequence exists and equals 0.00373... . - Amiram Eldar, May 30 2023
LINKS
EXAMPLE
942 is abundant, 943 and 944 are deficient, 945 is abundant.
945 is abundant, 946 and 947 are deficient, 948 is abundant.
MAPLE
with(numtheory): select(n->sigma(n)>2*n and sigma(n+1)<2*(n+1) and sigma(n+2)<2*(n+2) and sigma(n+3)>2*(n+3), [$1..12000]); # Muniru A Asiru, Jun 09 2018
MATHEMATICA
With[{abs = Select[Range[10000], DivisorSigma[-1, #] > 2 &]}, abs[[Position[Differences[abs], 3] // Flatten]]] (* Amiram Eldar, May 30 2023 *)
PROG
(PARI) isok(n) = (sigma(n)> 2*n) && (sigma(n+1)< 2*(n+1)) && (sigma(n+2) < 2*(n+2)) && (sigma(n+3) > 2*(n+3)); \\ Michel Marcus, Aug 21 2013
(GAP) a:=Filtered([1..130000], n->Sigma(n)>2*n and Sigma(n+1)<2*(n+1) and Sigma(n+2)<2*(n+2) and Sigma(n+3)>2*(n+3)); # Muniru A Asiru, Jun 09 2018
CROSSREFS
Subsequence of A005101.
Sequence in context: A052238 A158718 A104302 * A340876 A252295 A252294
KEYWORD
nonn
AUTHOR
Michel Marcus, Aug 21 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 May 13 23:15 EDT 2024. Contains 372524 sequences. (Running on oeis4.)