OFFSET
1,2
COMMENTS
a(n)/2^(n^2) is the probability that a random linear operator T on an n dimensional vector space over the field with two elements is such that the dimension of the range of T equals n-1. This probability is Product{j>=2} 1 - 1/2^j which is 2 times the probability that the dimension of the range of T equals n. Cf. A048651. - Geoffrey Critzer, Jun 28 2017
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..58
FORMULA
for n>=2 : a(n) = product j=0...n-2 (2^n - 2^j)^2 / (2^(n-1)- 2^j).
MATHEMATICA
Table[Product[(q^n - q^i)^2/(q^(n - 1) - q^i), {i, 0, n - 2}] /. q -> 2, {n, 0, 15}] (* Geoffrey Critzer, Jun 28 2017 *)
PROG
(PARI) a(n) = prod(j=0, n-2, (2^n - 2^j)^2 / (2^(n-1)- 2^j)); \\ Michel Marcus, Jun 28 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Yuval Dekel (dekelyuval(AT)hotmail.com), Jul 28 2003
EXTENSIONS
More terms from David Wasserman, Mar 28 2005
STATUS
approved