A224380 Table read by antidiagonals of numbers of form (2^n -1)*2^(m+2) + 3 where n>=1, m>=1.
11, 19, 27, 35, 51, 59, 67, 99, 115, 123, 131, 195, 227, 243, 251, 259, 387, 451, 483, 499, 507, 515, 771, 899, 963, 995, 1011, 1019, 1027, 1539, 1795, 1923, 1987, 2019, 2035, 2043, 2051, 3075, 3587, 3843, 3971, 4035, 4067, 4083, 4091, 4099, 6147, 7171, 7683, 7939, 8067, 8131, 8163, 8179
Offset: 1
Links
- Brad Clardy, Table of n, a(n) for n = 1..1000
Crossrefs
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 +1 : 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^(2+i-j) + 3; if IsPrime(k) then k, "*"; else k; end if;; end for; end for;
Comments