OFFSET
1,1
COMMENTS
If n>4 is an even square, n=4k^2, then A130280(n) <= k since n(k^2-1)+1 = (2k^2-1)^2. This sequence lists those k for which we have strict inequality. Most terms in this sequence belong to the subsequence b(m)=2m*(2m^2-1), m>1, for which A130280(4 b(m)^2) <= m < b(m), since 4 b(m)^2(m^2-1)+1 = (8m^4-8m^2+1)^2. For other terms k of this sequence (e.g., the subsequence 390, 3465, 15372, 48015, ...), A130280(4k^2) is even smaller.
PROG
(PARI) checkA130281(n)={local(m=4*n^2); for(i=2, sqrt(n), if(issquare(m*(i^2-1)+1), return(i)))}
for(n=1, 99999, if(checkA130281(n), print(n", ")))
CROSSREFS
KEYWORD
nonn
AUTHOR
M. F. Hasler, May 20 2007
STATUS
approved