OFFSET
1,1
COMMENTS
This sequence is the sequence of possible c^2 + 1 values of all triples of positive integers (a,b,c) such that (a^2 + 1)*(b^2 + 1) = c^2 + 1.
LINKS
Ely Golden, Table of n, a(n) for n = 1..10667 (terms <= 10^16)
EXAMPLE
50 is a term since 50 = 7^2 + 1 = 10 * 5 = (3^2 + 1)*(2^2 + 1).
MATHEMATICA
formQ[k_] := k >= 1 && IntegerQ@Sqrt[k - 1];
prodQ[k_] := AnyTrue[Divisors[k][[2 ;; -2]], formQ[#] && formQ[k/#]&];
okQ[k_] := formQ[k] && prodQ[k];
Select[Range[2, 10^6], okQ] (* Jean-François Alcover, May 10 2024 *)
PROG
(Python)
from math import isqrt
def is_perfect_square(n): return isqrt(abs(n))**2 == n
limit = 10**16
sequence_entries = set()
for a in range(1, isqrt(isqrt(limit))+1):
u = a**2 + 1
for b in range(a+1, isqrt(limit//u)+1):
v = b**2 + 1
if(is_perfect_square(u*v - 1)): sequence_entries.add(u*v)
sequence_entries = sorted(sequence_entries)
for i, j in enumerate(sequence_entries, 1):
print(i, j)
(PARI) isok1(k) = issquare(k-1) && (k>1);
isok2(k) = fordiv(k, d, if (isok1(d) && isok1(k/d), return(1)));
isok(k) = isok1(k) && isok2(k); \\ Michel Marcus, May 04 2024
CROSSREFS
KEYWORD
nonn
AUTHOR
Ely Golden, May 03 2024
STATUS
approved