login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A152216 For two consecutive numbers, the sum of the divisors of the sum of the two numbers divides the sum of the divisors of the product of the numbers. That is, numbers n such that sigma(2n+1)|sigma(n^2 + n) 0
2, 5, 7, 11, 19, 20, 23, 28, 29, 32, 34, 38, 39, 41, 46, 53, 57, 59, 62, 70, 73, 77, 83, 89, 90, 94, 103, 104, 113, 118, 119, 124, 131, 160, 173, 177, 179, 188, 190, 191, 208, 227, 229, 233, 239, 242, 248, 251, 263, 280, 281, 290, 293, 297, 298, 311, 316, 327, 335 (list; graph; refs; listen; history; internal format)
OFFSET

1,1

EXAMPLE

For n=11, 11+12=23, sigma(23)=24. Sigma(11*12)=sigma(132)=336 and 24|336

MAPLE

for n from 1 to 500 do if numtheory[sigma](n*(n+1)) mod numtheory[sigma](2*n+1) = 0 then printf("%d, ", n); fi; od: [From R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Dec 04 2008]

with(numtheory): a := proc (n) if type(sigma(n^2+n)/sigma(2*n+1), integer) = true then n else end if end proc: seq(a(n), n = 1 .. 400); [From Emeric Deutsch (deutsch(AT)duke.poly.edu), Dec 03 2008]

CROSSREFS

Sequence in context: A163695 A134641 A162491 * A045350 A179273 A045351

Adjacent sequences:  A152213 A152214 A152215 * A152217 A152218 A152219

KEYWORD

nonn

AUTHOR

J. M. Bergot (thekingfishb(AT)yahoo.ca), Nov 29 2008

EXTENSIONS

Corrected and extended by Emeric Deutsch (deutsch(AT)duke.poly.edu) and R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Dec 03 2008

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 15 19:15 EST 2012. Contains 205852 sequences.