login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A276281
Numbers of the form Bell(i)*Bell(j).
2
1, 2, 4, 5, 10, 15, 25, 30, 52, 75, 104, 203, 225, 260, 406, 780, 877, 1015, 1754, 2704, 3045, 4140, 4385, 8280, 10556, 13155, 20700, 21147, 41209, 42294, 45604, 62100, 105735, 115975, 178031, 215280, 231950, 317205, 579875, 678570, 769129, 840420, 1099644
OFFSET
1,2
LINKS
MATHEMATICA
Take[Union@Flatten@Table[BellB[i] BellB[j], {i, 0, 60}, {j, i}], 60]
PROG
(Perl) use ntheory ":all"; my($l, $i, %BP)=(50, 0); my @Bell = map { my $n=$_; vecsum(map { stirling($n, $_, 2) } 0..$n); } 0..$l; for my $i (0..$l) { for my $j ($i..$l) { $BP{vecprod($Bell[$i], $Bell[$j])}++ } } say $i++, " $_" for sort {$a<=>$b} keys %BP; # Dana Jacobsen, Sep 07 2016
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Sep 04 2016
STATUS
approved