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!)
A352372 Triangle read by rows. Let R(n, k) = Y(n, k, B) where Y are the partial Bell polynomials and B is the list [Bernoulli(j, 1), j = 0..n]. T(n, k) are R(n, k) normalized by the lcm of the denominators of the terms in row n (A048803). 0

%I #8 Mar 14 2022 17:36:15

%S 1,0,1,0,1,2,0,1,9,6,0,0,17,36,12,0,-2,50,325,300,60,0,0,28,2475,5250,

%T 2700,360,0,60,-882,14161,77175,80850,26460,2520,0,0,-608,5488,239267,

%U 499800,311640,70560,5040,0,-504,6480,-57404,735588,3563721,3969000,1640520,272160,15120

%N Triangle read by rows. Let R(n, k) = Y(n, k, B) where Y are the partial Bell polynomials and B is the list [Bernoulli(j, 1), j = 0..n]. T(n, k) are R(n, k) normalized by the lcm of the denominators of the terms in row n (A048803).

%F T(n, n) = Product_{k=1..n} rad(k) = Product_{k=1..n} A007947(k) = A048803(n).

%e Triangle starts:

%e [0] 1;

%e [1] 0, 1;

%e [2] 0, 1, 2;

%e [3] 0, 1, 9, 6;

%e [4] 0, 0, 17, 36, 12;

%e [5] 0, -2, 50, 325, 300, 60;

%e [6] 0, 0, 28, 2475, 5250, 2700, 360;

%e [7] 0, 60, -882, 14161, 77175, 80850, 26460, 2520;

%e [8] 0, 0, -608, 5488, 239267, 499800, 311640, 70560, 5040;

%e .

%e For example row 7 is 2520*[R(7, k), k = 0..7] = 2520*[0, 1/42, -7/20, 2023/360, 245/8, 385/12, 21/2, 1] since lcm(1, 42, 20, 360, 8, 12, 2, 1) = A048803(7) = 2520. Conversely, since R(n, n) = 1 and T(n, n) = Product_{k=1..n} rad(k), the R(n, k) can be obtained by dividing the terms of row n by T(n, n).

%t B[n_, k_] := BellY[n, k, Table[BernoulliB[j, 1], {j, 0, n}]];

%t P[n_] := Select[Divisors[n], PrimeQ];

%t T[n_, k_] := B[n, k] Product[Product[p, {p, P[j]}], {j, 1, n}];

%t Table[T[n, k], {n, 0, 9}, {k, 0, n}] // Flatten

%Y Cf. A027641/A027642, A048803, A007947, A264428 (Bell transform).

%K sign,tabl

%O 0,6

%A _Peter Luschny_, Mar 14 2022

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 19 22:26 EDT 2024. Contains 374440 sequences. (Running on oeis4.)