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!)
A283811 Poly-Bernoulli numbers B_n^(k) with k = -5. 3
1, 32, 454, 4718, 41506, 329462, 2441314, 17234438, 117437746, 779305142, 5067707074, 32440729958, 205120773586, 1284333040022, 7978977787234, 49258610238278, 302555048903026, 1850666770922102, 11281963755617794, 68586728901231398, 416015651355490066 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
a(n) is also the number of acyclic orientations of the complete bipartite graph K_{5,n}. - Vincent Pilaud, Sep 16 2020
LINKS
FORMULA
a(n) = 120*6^n - 240*5^n + 150*4^n - 30*3^n + 2^n.
From Colin Barker, Oct 14 2020: (Start)
G.f.: (1 - x)*(1 + 13*x - 18*x^2) / ((1 - 2*x)*(1 - 3*x)*(1 - 4*x)*(1 - 5*x)*(1 - 6*x)).
a(n) = 20*a(n-1) - 155*a(n-2) + 580*a(n-3) - 1044*a(n-4) + 720*a(n-5) for n>4.
(End)
MATHEMATICA
Table[120*6^n - 240*5^n + 150*4^n - 30*3^n + 2^n , {n, 0, 20}] (* Indranil Ghosh, Mar 17 2017 *)
PROG
(PARI) a(n) = 120*6^n - 240*5^n + 150*4^n - 30*3^n + 2^n; \\ Indranil Ghosh, Mar 17 2017
(PARI) Vec((1 - x)*(1 + 13*x - 18*x^2) / ((1 - 2*x)*(1 - 3*x)*(1 - 4*x)*(1 - 5*x)*(1 - 6*x)) + O(x^25)) \\ Colin Barker, Oct 14 2020
(Python) def A283811(n): return 120*6**n - 240*5**n + 150*4**n - 30*3**n + 2**n # Indranil Ghosh, Mar 17 2017
CROSSREFS
Row 5 of array A099594.
Sequence in context: A135217 A274802 A274748 * A066580 A076070 A133348
KEYWORD
nonn,easy
AUTHOR
Seiichi Manyama, Mar 17 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 April 19 06:44 EDT 2024. Contains 371782 sequences. (Running on oeis4.)