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!)
A027646 Denominators of poly-Bernoulli numbers B_n^(k) with k=3. 6
1, 8, 216, 288, 54000, 7200, 3704400, 35280, 7938000, 16800, 78262800, 304920, 4923832914000, 535392, 32464832400, 240240, 265832869302000, 2082880800, 50052680603125200, 387017631, 186286292470278000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
K. Imatomi, M. Kaneko, E. Takeda, Multi-Poly-Bernoulli Numbers and Finite Multiple Zeta Values, J. Int. Seq. 17 (2014) # 14.4.5
Masanobu Kaneko, Poly-Bernoulli numbers, Journal de théorie des nombres de Bordeaux, 9 no. 1 (1997), Pages 221-228.
FORMULA
a(n) = denominator of Sum_{j=0..n} (-1)^(n+j) * j! * Stirling2(n, j) * (j+1)^(-k), for k = 3.
MAPLE
a:= (n, k)-> denom( (-1)^n*add((-1)^m*m!*Stirling2(n, m)/(m+1)^k, m=0..n)):
seq(a(n, 3), n = 0..30);
MATHEMATICA
With[{k=3}, Table[Sum[(-1)^(n+j)*j!*StirlingS2[n, j]*(j+1)^(-k), {j, 0, n}], {n, 0, 40}]]//Denominator (* G. C. Greubel, Aug 02 2022 *)
PROG
(Magma)
A027646:= func< n, k | Denominator( (&+[(-1)^(j+n)*Factorial(j)*StirlingSecond(n, j)/(j+1)^k: j in [0..n]]) ) >;
[A027646(n, 3): n in [0..20]]; // G. C. Greubel, Aug 02 2022
(SageMath)
def A027646(n, k): return denominator( sum((-1)^(n+j)*factorial(j)*stirling_number2(n, j)/(j+1)^k for j in (0..n)) )
[A027646(n, 3) for n in (0..20)] # G. C. Greubel, Aug 02 2022
CROSSREFS
Cf. A027645.
Sequence in context: A221042 A358211 A247032 * A224096 A224103 A072159
KEYWORD
nonn,frac
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 April 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)