A224701 Table read by antidiagonals of numbers of form (2^n - 1)*2^(m+3) + 5 where n>=1, m>=1.
21, 37, 53, 69, 101, 117, 133, 197, 229, 245, 261, 389, 453, 485, 501, 517, 773, 901, 965, 997, 1013, 1029, 1541, 1797, 1925, 1989, 2021, 2037, 2053, 3077, 3589, 3845, 3973, 4037, 4069, 4085, 4101, 6149, 7173, 7685, 7941, 8069, 8133, 8165, 8181, 8197, 12293, 14341, 15365, 15877, 16133
Offset: 1
Links
- Brad Clardy, Table of n, a(n) for n = 1..1000
Programs
-
Magma
//program generates values in a table form, row labels of 2^i -1 for i:=1 to 10 do m:=2^i - 1; m, [ m*2^(n+3) +5 : n in [1..10]]; end for; //program generates sequence in lexicographic ordering of A057555, read //along antidiagonals from top. Primes in the sequence are marked with *. for i:=2 to 18 do for j:=1 to i-1 do m:=2^j -1; k:=m*2^(3+i-j) + 5; if IsPrime(k) then k, "*"; else k; end if; end for; end for;
Comments