A347289 Number of independent sets in the binomial tree of order n.
2, 3, 8, 60, 3456, 11612160, 132090377011200, 17175244766164688547348480000, 291347192866832125410134687322211469174161539072000000000, 84034354923469245337680441503007090893711465882978424632224243601869256327175152475648504794972160000000000000000
Offset: 0
Keywords
Examples
For n=5, the product formula is a(5) = 7 * 5 * 4^2 * 3^4 * 2^8 = 11612160.
Links
- Kevin Ryde, Table of n, a(n) for n = 0..12
Programs
-
PARI
a(n) = my(P=1); for(k=2,n,P=sqr(P)*k); (n+2)*P;
Comments