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!)
A260613 Triangle read by rows: T(n, k) = coefficient of x^(n-k) in Product_{m=1..n} (x+prime(m)); 0 <= k <= n, n >= 0. 5
1, 1, 2, 1, 5, 6, 1, 10, 31, 30, 1, 17, 101, 247, 210, 1, 28, 288, 1358, 2927, 2310, 1, 41, 652, 5102, 20581, 40361, 30030, 1, 58, 1349, 16186, 107315, 390238, 716167, 510510, 1, 77, 2451, 41817, 414849, 2429223, 8130689, 14117683, 9699690 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Up to signs and order of coefficients the same as A070918. Except for signs and the first column the same as A238146. - M. F. Hasler, Aug 13 2015
LINKS
Alois P. Heinz, Rows n = 0..140, flattened (first 20 rows from Matthew Campbell)
FORMULA
T(n, 1) = A007504(n) for n >= 1.
T(n, 2) = A024447(n) for n >= 2.
EXAMPLE
The triangle starts:
Row 0: 1;
Row 1: 1, 2; Coefficients of x + 2.
Row 2: 1, 5, 6; Coefficients of (x+2)(x+3) = x^2 + 5x + 6.
Row 3: 1, 10, 31, 30; Coeff's of (x+2)(x+3)(x+5) = x^3 + 10x^2 + 31x + 30.
Row 5: 1, 17, 101, 247, 210;
Row 6: 1, 28, 288, 1358, 2927, 2310;
...
MAPLE
T:= n-> (p-> seq(coeff(p, x, n-i), i=0..n))(mul(x+ithprime(i), i=1..n)):
seq(T(n), n=0..10); # Alois P. Heinz, Aug 18 2019
MATHEMATICA
row[n_] := CoefficientList[Product[x + Prime[m], {m, 1, n}] + O[x]^(n+1), x] // Reverse;
row /@ Range[0, 8] // Flatten (* Jean-François Alcover, Sep 16 2019 *)
PROG
(PARI) tabl(nn) = {for (n=0, nn, polp = prod(k=1, n, x+prime(k)); forstep (k= n, 0, -1, print1(polcoeff(polp, k), ", "); ); print(); ); } \\ Michel Marcus, Aug 10 2015
CROSSREFS
Cf. A000040.
Sequence in context: A193635 A241168 A145324 * A179457 A107783 A047887
KEYWORD
nonn,tabl
AUTHOR
Matthew Campbell, Aug 10 2015
EXTENSIONS
Corrected and edited by M. F. Hasler, Aug 13 2015
a(20) in b-file corrected by Andrew Howroyd, Dec 31 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 May 13 09:49 EDT 2024. Contains 372504 sequences. (Running on oeis4.)