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!)
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 (list; graph; refs; listen; history; text; internal format)
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
Sequence in context: A058299 A191616 A319909 * A059994 A299492 A253198
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Sep 04 2016
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.)