OFFSET
1,1
COMMENTS
a(n) is the first iterate of the Gaussian norm dynamics: if N_0(m) = m^2 + 1, then a(n) = N_1(m) = (m*(m^2+1))^2 + 1 at values m where N_0(m) is prime.
a(n) is the Gaussian norm of the integer m*p + i in Z[i], where p = m^2 + 1 is the n-th Landau prime.
The tower of iterates producing a(n) is governed by the cubic field Q(alpha), alpha^3 = alpha + 1, whose Artin L-function has Dirichlet coefficients A030199.
FORMULA
EXAMPLE
a(1) = (1*2)^2 + 1 = 5, since 2 = 1^2 + 1 is the first Landau prime.
a(2) = (2*5)^2 + 1 = 101, since 5 = 2^2 + 1.
a(3) = (4*17)^2 + 1 = 4625 = 5^3 * 37, since 17 = 4^2 + 1.
a(4) = (6*37)^2 + 1 = 49285 = 5 * 9857, since 37 = 6^2 + 1.
a(5) = (10*101)^2 + 1 = 1020101 (prime), since 101 = 10^2 + 1.
PROG
(PARI) for(m=1, 200, my(p=m^2+1); if(isprime(p), print1((m*p)^2+1, ", ")))
(Python) from sympy import isprime; [((m*(m*m+1))**2+1) for m in range(1, 200) if isprime(m*m+1)]
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Steven Lee Benjamin, Apr 27 2026
STATUS
approved
