OFFSET
1,1
COMMENTS
LINKS
Ray Chandler, Table of n, a(n) for n = 1..10000
EXAMPLE
2210 is in the sequence because 2210 = 2*5*13*17, and x^2+y^2=2210 has integer solutions (x,y) = (1,47), (19,43), (23,41) and (29,37).
32045 is in the sequence because x^2 + y^2 = 32045 = 5*13*17*29 has solutions (x,y) = (2,179), (19,178), (46,173), (67,166), (74,163), (86,157), (109,142) and (122,131).
PROG
(Python)
from math import isqrt
from sympy import primerange, integer_nthroot
from oeis_sequences.OEISsequences import bisection
def A248712(n):
def g(x): return sum(1 for p in primerange(x+1) if p&3!=3)
def h(x, y, i): return enumerate((p for p in primerange(x, y) if p&3!=3), i)
def f(x): return int(n+x-sum(g(x//(k*m*r))-c for a, k in h(2, integer_nthroot(x, 4)[0]+1, 1) for b, m in h(k+1, integer_nthroot(x//k, 3)[0]+1, a+1) for c, r in h(m+1, isqrt(x//(k*m))+1, b+1)))
return bisection(f, n, n) # Chai Wah Wu, Dec 21 2025
CROSSREFS
KEYWORD
nonn
AUTHOR
Colin Barker, Oct 12 2014
STATUS
approved
