login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 60th year, we have over 367,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Other ways to Give
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A169902 Earliest sequence such that xy | a(x+y) and (x+y) | a(xy) for all x >= 1, y >= 1. 1
2, 3, 4, 60, 12, 2520, 120, 5040, 2520, 277200, 2520, 4324320, 27720, 5045040, 10810800, 49008960, 720720, 4190266080, 12252240, 4655851200, 4888643760, 117793035360, 232792560, 642507465600, 26771144400, 2088149263200 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
PROG
(Python)
from math import gcd
for n in range(1, 1001):
..a_n = 1
..res = []
..for addend in range(1, n//2+1): res.append(addend*(n - addend))
..for dividend in range(1, n+1):
....if not n%dividend: res.append(dividend + n//dividend)
....if dividend*dividend >= n: break
..for i in res: a_n *= i // gcd(a_n, i)
..print(n, a_n)
# Charlie Neder, Oct 09 2018
CROSSREFS
Sequence in context: A282034 A096782 A098811 * A004855 A097930 A012322
KEYWORD
nonn,nice
AUTHOR
Andrew Weimholt, Jul 05 2010
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 December 9 10:52 EST 2023. Contains 367690 sequences. (Running on oeis4.)