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!)
A265602 Triangle read by rows, the numerators of the Bell transform of B(2n,1) where B(n,x) are the Bernoulli polynomials. 3
1, 0, 1, 0, 1, 1, 0, -1, 1, 1, 0, 1, -1, 1, 1, 0, -1, 4, 1, 5, 1, 0, 5, -163, 47, 7, 5, 1, 0, -691, 191, -109, 11, 7, 7, 1, 0, 7, -1431809, 6869, -253, 1, 119, 14, 1, 0, -3617, 130168, -7728013, 2659, -83, 11, 77, 6, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,18
COMMENTS
For the definition of the Bell transform see A264428 and the link given there.
LINKS
EXAMPLE
1,
0, 1,
0, 1, 1,
0, -1, 1, 1,
0, 1, -1, 1, 1,
0, -1, 4, 1, 5, 1,
0, 5, -163, 47, 7, 5, 1,
0, -691, 191, -109, 11, 7, 7, 1,
0, 7, -1431809, 6869, -253, 1, 119, 14, 1,
0, -3617, 130168, -7728013, 2659, -83, 11, 77, 6, 1.
MAPLE
A265602_triangle := proc(n) local B, C, k;
B := BellMatrix(x -> bernoulli(2*x, 1), n); # see A264428
for k from 1 to n do
C := LinearAlgebra:-Row(B, k):
print(seq(numer(C[j]), j=1..k))
od end:
A265602_triangle(10);
MATHEMATICA
BellMatrix[f_, len_] := With[{t = Array[f, len, 0]}, Table[BellY[n, k, t], {n, 0, len - 1}, {k, 0, len - 1}]];
rows = 12;
B = BellMatrix[BernoulliB[2#, 1]&, rows];
Table[B[[n, k]] // Numerator, {n, 1, rows}, {k, 1, n}] // Flatten (*~, from Maple *) ~~~
CROSSREFS
Cf. A265603 for the denominators, A265314 and A265315 for B(n,1).
Cf. A000367 (column 1).
Sequence in context: A076810 A303144 A370451 * A185373 A244759 A194127
KEYWORD
sign,tabl,frac
AUTHOR
Peter Luschny, Jan 21 2016
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 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)