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!)
A141617 Triangle T(n,m) = prime(m)*prime(n-m)*binomial(n,m) read by rows, 0<=m<=n. 4
1, 2, 2, 3, 8, 3, 5, 18, 18, 5, 7, 40, 54, 40, 7, 11, 70, 150, 150, 70, 11, 13, 132, 315, 500, 315, 132, 13, 17, 182, 693, 1225, 1225, 693, 182, 17, 19, 272, 1092, 3080, 3430, 3080, 1092, 272, 19, 23, 342, 1836, 5460, 9702, 9702, 5460, 1836, 342, 23 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
For the purpose of this sequence define prime(0)=1.
Row sums are 1, 4, 14, 46, 148, 462, 1420, 4234, 12356, 34726, 95220,...
LINKS
FORMULA
Symmetry: T(n,m) = T(n,n-m).
EXAMPLE
1;
2, 2;
3, 8, 3;
5, 18, 18, 5;
7, 40, 54, 40, 7;
11, 70, 150, 150, 70, 11;
13, 132, 315, 500, 315, 132, 13;
17, 182, 693, 1225, 1225, 693, 182, 17;
19, 272, 1092, 3080, 3430, 3080, 1092, 272, 19;
23, 342, 1836, 5460, 9702, 9702, 5460, 1836, 342, 23;
29, 460, 2565, 10200, 19110, 30492, 19110, 10200, 2565, 460, 29;
...
MAPLE
p:= n-> `if`(n=0, 1, ithprime(n)):
T:= (n, k)-> binomial(n, k)*p(k)*p(n-k):
seq(seq(T(n, k), k=0..n), n=0..10); # Alois P. Heinz, Apr 26 2023
MATHEMATICA
Table[Table[If[n == m ==0, 1, If[m == 0 || m == n, Prime[n], (Prime[n - m]*Prime[m])*Binomial[n, m]]], {m, 0, n}], {n, 0, 10}] Flatten[%]
CROSSREFS
Sequence in context: A135835 A177696 A134574 * A267644 A204197 A238654
KEYWORD
nonn,easy,tabl
AUTHOR
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 July 16 17:03 EDT 2024. Contains 374358 sequences. (Running on oeis4.)