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!)
A066257 a(n) is the smallest number >1 of the form (k^2+n)/(n^2+k). 2
3, 2, 4, 3, 11, 16, 2, 29, 7, 5, 8, 67, 39, 92, 106, 11, 137, 34, 23, 191, 211, 8, 5, 277, 21, 3, 352, 165, 11, 10, 68, 37, 529, 83, 15, 31, 23, 704, 19, 315, 821, 67, 137, 63, 61, 28, 26, 7, 43, 1226, 931, 513, 87, 1432, 6, 23, 1597, 15, 1712, 1771, 13, 1892, 16, 11, 125 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,1
COMMENTS
For n > 2, a(n) <= n^2/2 - 3*n^2/2 + 2, which is (k^2+n)/(n^2+k) for k = n^2 - 2*n + 2. - Robert Israel, Nov 18 2020
LINKS
MAPLE
f:= proc(n) local S, m, k;
S:= select(t -> subs(t, k) > n, [isolve(k^2+n=m*(n^2+k))]);
min(map(t -> subs(t, m), S))
end proc:
map(f, [$2..100]); # Robert Israel, Nov 18 2020
MATHEMATICA
Do[k = 1; While[m = (k^2 + n)/(n^2 + k); !IntegerQ[m] || m == 1, k++ ]; Print[m], {n, 2, 75} ]
CROSSREFS
Cf. A066256.
Sequence in context: A243407 A061721 A294209 * A085591 A062964 A010270
KEYWORD
nonn,look
AUTHOR
Benoit Cloitre, Dec 31 2001
EXTENSIONS
More terms from Robert G. Wilson v, Jan 03 2002
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 24 16:25 EDT 2024. Contains 371961 sequences. (Running on oeis4.)