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!)
A067730 Numbers n such that sigma(n-1) + sigma(n+1) = sigma(2n). 3
309, 425, 2135, 2913, 6861, 20155, 37415, 45155, 74875, 329841, 4720281, 6385749, 7030911, 11606649, 13954745, 20920075, 22436225, 22937785, 37760631, 38748291, 81607505, 85815925, 95375589, 114195965, 115314295, 122491401, 132765639 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Conjecture: sequence contains odd values only. - Benoit Cloitre, Feb 18 2002
LINKS
EXAMPLE
sigma(309-1) + sigma(309+1) = 672+576 = sigma(2*309), so 309 is a term of the sequence.
MATHEMATICA
Select[Range[10^6], DivisorSigma[1, # - 1] + DivisorSigma[1, # + 1] == DivisorSigma[1, 2# ] &]
PROG
(PARI) a067730(m) = for(n=2, m, if(sigma(n-1)+sigma(n+1)==sigma(2*n), print1(n, ", "))) a067730(10^7)
CROSSREFS
Sequence in context: A060980 A061881 A121322 * A183627 A184544 A251345
KEYWORD
nonn
AUTHOR
Joseph L. Pe, Feb 05 2002
EXTENSIONS
More terms from Klaus Brockhaus, Feb 07 2002
Edited and extended by Robert G. Wilson v, Feb 08 2002
a(21)-a(27) from Donovan Johnson, Jan 31 2009
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 23 03:30 EDT 2024. Contains 371906 sequences. (Running on oeis4.)