The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A317644 Triangle read by rows: multiplicative version of Pascal's triangle except n-th row begins and ends with (n+1)-st prime. 0
2, 3, 3, 5, 9, 5, 7, 45, 45, 7, 11, 315, 2025, 315, 11, 13, 3465, 637875, 637875, 3465, 13, 17, 45045, 2210236875, 406884515625, 2210236875, 45045, 17, 19, 765765, 99560120034375, 899311160300888671875, 899311160300888671875, 99560120034375, 765765, 19, 23, 14549535, 76239655318123171875, 89535527067809533413858673095703125, 808760563041730681160065242862701416015625, 89535527067809533413858673095703125, 76239655318123171875, 14549535, 23 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
FORMULA
From Rémy Sigrist, Sep 02 2018: (Start)
A007949(T(n+1, k+1)) = A028326(n, k) for any n >= 0 and k = 0..n.
A112765(T(n+1, k+1)) = A007318(n, k) for any n > 0 and k = 0..n.
(End)
EXAMPLE
Triangle begins:
2;
3, 3;
5, 9, 5;
7, 45, 45, 7;
11, 315, 2025, 315, 11;
13, 3465, 637875, 637875, 3465, 13;
...
Formatted as a symmetric triangle:
.
2
.
3 3
.
5 9 5
.
7 45 45 7
.
11 315 2025 315 11
.
13 3465 637875 637875 3465 13
...
MATHEMATICA
t = {{2}};
Table[AppendTo[
t, {Prime[i],
Table[
t[[i - 1]][[j]]*t[[i - 1]][[j + 1]], {j,
1, (t[[i - 1]] // Length) - 1}], Prime[i]} // Flatten], {i, 2, 10}] //
Last // Flatten
t={}; Do[r={}; Do[If[k==0||k==n, m=Prime[n + 1], m=t[[n, k]]t[[n, k + 1]]]; r=AppendTo[r, m], {k, 0, n}]; AppendTo[t, r], {n, 0, 10}]; t (* Vincenzo Librandi, Sep 03 2018 *)
CROSSREFS
Sequence in context: A265019 A193979 A059503 * A194000 A295781 A296725
KEYWORD
nonn,tabl
AUTHOR
Philipp O. Tsvetkov, Aug 02 2018
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 May 12 19:25 EDT 2024. Contains 372494 sequences. (Running on oeis4.)