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!)
A289108 Triangle read by rows: T(n,k) = (k + 1)*prime(n) + k for n > 0, 0 <= k <= n, and with T(0,0) = 1. 1
1, 2, 5, 3, 7, 11, 5, 11, 17, 23, 7, 15, 23, 31, 39, 11, 23, 35, 47, 59, 71, 13, 27, 41, 55, 69, 83, 97, 17, 35, 53, 71, 89, 107, 125, 143, 19, 39, 59, 79, 99, 119, 139, 159, 179, 23, 47, 71, 95, 119, 143, 167, 191, 215, 239, 29, 59, 89, 119, 149, 179, 209, 239, 269, 299, 329 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
EXAMPLE
Triangle begins:
1;
2, 5;
3, 7, 11;
5, 11, 17, 23;
7, 15, 23, 31, 39;
11, 23, 35, 47, 59, 71;
13, 27, 41, 55, 69, 83, 97;
17, 35, 53, 71, 89, 107, 125, 143;
19, 39, 59, 79, 99, 119, 139, 159, 179;
23, 47, 71, 95, 119, 143, 167, 191, 215, 239;
...
MATHEMATICA
Join[{1}, t[n_, k_] := (k + 1) Prime[n] + k; Table[t[n, k], {n, 10}, {k, 0, n}]//Flatten]
PROG
(Magma) /* As triangle (here NthPrime(0)=1) */ [[(k+1)*NthPrime(n)+k: k in [0..n]]: n in [0.. 15]];
CROSSREFS
Sequence in context: A192177 A288417 A159016 * A246364 A352774 A083190
KEYWORD
nonn,tabl
AUTHOR
Vincenzo Librandi, Sep 02 2017
EXTENSIONS
Definition corrected by Bruno Berselli, Sep 06 2017
STATUS
approved

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 24 04:14 EDT 2024. Contains 371918 sequences. (Running on oeis4.)