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!)
A027645 Numerators of poly-Bernoulli numbers B_n^(k) with k=3. 6
1, 1, -11, -1, 1243, -49, -75613, 599, 234671, -803, -4955857, 53443, 921931911863, -449291, -23461249769, 1237447, 917870505450709, -82659252107, -959539811053709101, 145633840717, 20593004175300735901, -12278015226517 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
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), pp. 221-228.
FORMULA
a(n) = numerator of Sum_{j=0..n} (-1)^(n+j) * j! * Stirling2(n, j) * (j+1)^(-k), for k = 3.
MAPLE
a:= (n, k)-> numer((-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}]]//Numerator (* G. C. Greubel, Aug 02 2022 *)
PROG
(Magma)
A027645:= func< n, k | Numerator( (&+[(-1)^(j+n)*Factorial(j)*StirlingSecond(n, j)/(j+1)^k: j in [0..n]]) ) >;
[A027645(n, 3): n in [0..30]]; // G. C. Greubel, Aug 02 2022
(SageMath)
def A027645(n, k): return numerator( sum((-1)^(n+j)*factorial(j)*stirling_number2(n, j)/(j+1)^k for j in (0..n)) )
[A027645(n, 3) for n in (0..30)] # G. C. Greubel, Aug 02 2022
CROSSREFS
Cf. A027646.
Sequence in context: A290860 A284232 A204848 * A193925 A365644 A010190
KEYWORD
sign,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 16 01:40 EDT 2024. Contains 371696 sequences. (Running on oeis4.)