A271725 T(n,k) is an array read by rows, with n > 0 and k=1..4, where row n gives four prime numbers in increasing order with locations in right angles of each concentric square drawn on a distorted version of the Ulam spiral.
3, 7, 17, 19, 13, 23, 37, 41, 307, 359, 401, 419, 13807, 14159, 14401, 14519, 41413, 42023, 42437, 42641, 6317683, 6325223, 6330257, 6332771, 22958473, 22972847, 22982437, 22987229, 39081253, 39100007, 39112517, 39118769, 110617807, 110649359, 110670401, 110680919
Offset: 1
Keywords
Links
- Michel Lagneau, Illustration
Programs
-
Maple
for n from 1 to 10000 do : x1:=4*n^2-10*n+7:x2:=(2*n-1)^2-2: x3:=4*(n+1)^2-6*(n+1)+1:x4:=4*n^2+1: if isprime(x1) and isprime(x2) and isprime(x3) and isprime(x4) then printf("%d %d %d %d %d \n",n,x1,x2,x4,x3): else fi: od:
Comments