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”).

A067765
Order of linear Heyting semi-lattice on n points.
4
1, 2, 18, 370386, 143436460933743129632865858558642
OFFSET
0,2
COMMENTS
The next term is too large to include.
FORMULA
a(0)=1; for n>0, a(n) = Product_{r=0..n-1} (1+a(r))^binomial(n, r).
MAPLE
A067765 := proc(n) option remember; if n=0 then 1 else mul((1+A067765(r))^binomial(n, r), r=0..n-1); fi; end;
CROSSREFS
Sequence in context: A120929 A349886 A007184 * A293242 A321339 A086367
KEYWORD
nonn
AUTHOR
Peter Freyd (pjf(AT)saul.cis.upenn.edu), Feb 07 2002
STATUS
approved