A124426 Product of two successive Bell numbers.
1, 2, 10, 75, 780, 10556, 178031, 3630780, 87548580, 2452523325, 78697155750, 2859220516290, 116482516809889, 5277304280371714, 264005848594606490, 14493602135008296115, 868435614538568029188, 56520205738693680322836
Offset: 0
Keywords
Links
- Harvey P. Dale, Table of n, a(n) for n = 0..324
Programs
-
Magma
[&*[ Bell(n+k): k in [0..1] ]: n in [0..30]]; // Vincenzo Librandi, Apr 09 2020
-
Maple
with(combinat): seq(bell(n)*bell(n+1),n=0..19);
-
Mathematica
Times@@@Partition[BellB[Range[0,20]],2,1] (* Harvey P. Dale, Oct 07 2018 *)
Comments