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!)
A054904 x = a(n) is the smallest composite number such that sigma(x+6n) = sigma(x)+6n, where sigma = A000203. 6
104, 65, 20, 80, 44, 125, 45, 63, 40, 99, 56, 70, 296, 125, 88, 110, 104, 145, 212, 182, 80, 170, 333, 105, 369, 185, 184, 135, 180, 301, 356, 185, 1859, 329, 176, 195, 4916, 434, 612, 287, 140, 185, 776, 255, 524, 413, 344, 205, 272, 329, 567, 215, 320, 469 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
If sigma(x+d) = sigma(x)+d and d = 6k, then composite solutions seem to be more frequent and arise sooner.
a(725) > 3*10^11 (if it exists). - Donovan Johnson, Sep 23 2013
LINKS
FORMULA
sigma(x+6n) = sigma(x)+6n, a(n) = min(x) and it is composite.
EXAMPLE
n = 20, 6n = 120, a(20) = 182, sigma(182)+120 = 336+120 = 456 = sigma(182+120) = sigma(302).
MATHEMATICA
Table[x = 4; While[Nand[CompositeQ@ x, DivisorSigma[1, x + 6 n] == DivisorSigma[1, x] + 6 n], x++]; x, {n, 54}] (* Michael De Vlieger, Feb 18 2017 *)
PROG
(PARI) /* finds first 696 terms */ mx=7695851; s=vector(mx); for(j=4, mx, if(isprime(j)==0, s[j]=sigma(j))); for(n=1, 696, n6=n*6; for(x=4, 7691753, if(s[x]>0, if(s[x+n6]==s[x]+n6, write("b054904.txt", n " " x); next(2))))) /* Donovan Johnson, Sep 23 2013 */
CROSSREFS
Sequence in context: A106297 A090849 A091025 * A117845 A286812 A328782
KEYWORD
nonn
AUTHOR
Labos Elemer, May 23 2000
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 August 15 09:40 EDT 2024. Contains 375173 sequences. (Running on oeis4.)