A359439 a(n) is the least number of the form p^2 + q^2 - 2 for primes p and q that is an odd multiple of 2^n, or -1 if there is no such number.
11, 6, -1, 56, 16, 32, 192, 128, 2816, 1536, 15360, 30720, 12288, 73728, 147456, 32768, 196608, 1179648, 22806528, 11010048, 34603008, 31457280, 314572800, 679477248, 50331648, 301989888, 1006632960, 10871635968, 20132659200, 4831838208, 28991029248, 173946175488, 450971566080, 77309411328
Offset: 0
Keywords
Examples
a(0) = 11 = 2^2 + 3^2 - 2 = 11*2^0. a(1) = 6 = 2^2 + 2^2 - 2 = 3*2^1. a(3) = 56 = 3^2 + 7^2 - 2 = 7*2^3. a(4) = 16 = 3^2 + 3^2 - 2 = 1*2^4.
Crossrefs
Cf. A045636
Programs
-
Maple
f:= proc(n) local b,t,s,x,y; t:= 2^n; for b from 1 by 2 do if ormap(s -> subs(s,x) <= subs(s,y) and isprime(subs(s,x)) and isprime(subs(s,y)), [isolve(x^2+y^2-2=b*t)]) then return b*t fi od; end proc: f(2):= -1: map(f, [$0..40]);
Comments