login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A211890 Triangle read by rows, where row n starts with n-th prime, followed by n primes in arithmetic progression; T(0,0) = 1 by convention. 6

%I #22 Jun 30 2019 20:25:18

%S 1,2,3,3,5,7,5,11,17,23,7,37,67,97,127,11,71,131,191,251,311,13,

%T 244243,488473,732703,976933,1221163,1465393,17,6947,13877,20807,

%U 27737,34667,41597,48527,19,546859,1093699,1640539,2187379,2734219,3281059,3827899

%N Triangle read by rows, where row n starts with n-th prime, followed by n primes in arithmetic progression; T(0,0) = 1 by convention.

%C T(n,0) = A000040(n) and T(n,k+1) - T(n,k) = A211889(n), 0 <= k < n.

%H Chai Wah Wu, <a href="/A211890/b211890.txt">Rows n=0..10 of triangle, flattened (rows n = 0..9 from Reinhard Zumkeller)</a>

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/PrimeArithmeticProgression.html">Prime Arithmetic Progression</a>.

%H Wikipedia, <a href="http://en.wikipedia.org/wiki/Primes_in_arithmetic_progression">Primes in arithmetic progression</a>.

%H <a href="/index/Pri#primes_AP">Index entries for sequences related to primes in arithmetic progressions</a>

%e First 9 rows of triangle:

%e 0: 1

%e 1: 2 3

%e 2: 3 5 7

%e 3: 5 11 17 23

%e 4: 7 37 67 97 127

%e 5: 11 71 131 191 251 311

%e 6: 13 244243 488473 732703 976933 1221163 1465393

%e 7: 17 6947 13877 20807 27737 34667 41597 48527

%e 8: 19 546859 1093699 1640539 2187379 2734219 3281059 3827899 4374739

%o (Haskell)

%o a211890 n k = a211890_tabl !! n !! k

%o a211890_row n = a211890_tabl !! n

%o a211890_tabl = zipWith3 (\p k row -> map ((+ p) . (* k)) row)

%o a008578_list (0 : a211889_list) a002262_tabl

%Y Cf. A007528, A007652, A132231, A214360, A008578, A002262.

%K nonn,tabl

%O 0,2

%A _Reinhard Zumkeller_, Jul 13 2012

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)