A354271 Irregular array of the prime numbers read by rows.
2, 3, 2, 5, 7, 3, 11, 2, 5, 13, 17, 3, 11, 19, 2, 7, 23, 17, 29, 5, 13, 31, 7, 37, 3, 11, 19, 29, 41, 2, 5, 13, 43, 17, 47, 3, 11, 23, 41, 53, 2, 7, 37, 59, 31, 61, 5, 13, 23, 43, 67, 7, 19, 29, 37, 59, 71, 3, 11, 41, 73, 2, 5, 17, 47, 79, 19, 31, 53, 71, 83, 3, 67
Offset: 1
Examples
. 2 . . 3 . 2 . . 5 . . . . . . 7 . . 3 . . . . . . . 11 . 2 . . 5 . . . . . . . 13 . . . . . . . . . . . . . . . . 17 . . 3 . . . . . . . 11 . . . . . . . 19 . 2 . . . . 7 . . . . . . . . . . . . . . . 23 . . . . . . . . . . . . . . . . 17 . . . . . . . . . . 5 . . . . . . . 13 . . . . . . . . . . . . . . . . 7 . . . . . . . . . . . . . . . . . . 3 . . . . . . . 11 . . . . . . . 19 . . . . . 2 . . 5 . . . . . . . 13 . . . . . . . . . . . . . . . . . . . . . . . . . . 17 . . . . . . . . 3 . . . . . . . 11 . . . . . . . . . . . 23 . 2 . . . . 7 . . . . . . . . . . . . . . . .
Links
- Michael De Vlieger, Table of n, a(n) for n = 1..10701 (rows n = 1..400, flattened)
- Michael De Vlieger, Bitmap of 2^(pi(T(n,k)) - 1) for n = 1..1024.
- Thomas Scheuerle, The first 1000 rows, a(1 .. 58521) as scatter plot.
- Thomas Scheuerle, Lengths of the first 10000 rows as plot against row number.
Programs
-
MATLAB
function a = A354271( max_row ) p = primes(max_row*floor(2*max_row*log(max_row))); a = []; for r = 1:max_row row = p(1:r)-(r-1:-1:0); row = row(isprime(max(row,0)) > 0); a = [a row]; end end % Thomas Scheuerle, May 23 2022
-
Mathematica
Table[Select[Array[Prime[#] - (n - #) &, n], And[# > 0, PrimeQ[#]] &], {n, 24}] // Flatten (* Michael De Vlieger, May 25 2022 *) (* Extract data from the bitmap: set k to number of rows desired, up to 1024 *) k = 120; Map[Prime /@ Position[#, 0.][[All, 1]] &, ImageData[Import["https://oeis.org/A354271/a354271_2.png"]][[1 ;; k]] ] // Flatten (* Michael De Vlieger, May 25 2022 *)
Comments