cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A169901 Earliest sequence such that (x+y) | a(xy) for all x>=1, y>=1.

Original entry on oeis.org

2, 3, 4, 20, 6, 35, 8, 18, 30, 77, 12, 728, 14, 45, 16, 680, 18, 1881, 20, 252, 110, 299, 24, 3850, 130, 135, 84, 5104, 30, 75361, 32, 396, 238, 665, 36, 28860, 38, 273, 80, 82082, 42, 218569, 44, 360, 2898, 1175, 48, 193648, 350, 2295, 260, 25228, 54, 33495
Offset: 1

Views

Author

Andrew Weimholt, Jul 05 2010

Keywords

Programs

  • Maple
    a:= n-> ilcm(seq(d+n/d, d=numtheory[divisors](n))):
    seq(a(n), n=1..60);  # Alois P. Heinz, Mar 09 2016
  • Mathematica
    eq[n_] := And @@ Table[y = n/x; Mod[a[x*y], x + y] == 0, {x, Divisors[n]}]; r[n_] := Reduce[ eq[n], a[n], Integers] /. C[1] -> 1; Table[a[n] /. ToRules[r[n]], {n, 1, 51}] (* Jean-François Alcover, Aug 03 2012 *)