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

A022241
Gaussian binomial coefficients [ n,12 ] for q = 7.
1
1, 16148168401, 228167924870691555751, 3167372099179629291002826414551, 43858773775052010561068085080055954232604, 607098005839518055568051981319221867272218743306204, 8403089283059531541841722254852038933206966651131615823995604
OFFSET
12,2
REFERENCES
F. J. MacWilliams and N. J. A. Sloane, The Theory of Error-Correcting Codes, Elsevier-North Holland, 1978, p. 698.
LINKS
FORMULA
a(n) = Product_{i=1..12} (7^(n-i+1)-1)/(7^i-1), by definition. - Vincenzo Librandi, Aug 05 2016
MATHEMATICA
Table[QBinomial[n, 12, 7], {n, 12, 20}] (* Vincenzo Librandi, Aug 05 2016 *)
PROG
(Sage) [gaussian_binomial(n, 12, 7) for n in range(12, 19)] # Zerinvary Lajos, May 28 2009
(Magma) r:=12; q:=7; [&*[(1-q^(n-i+1))/(1-q^i): i in [1..r]]: n in [r..20]]; // Vincenzo Librandi, Aug 05 2016
CROSSREFS
Sequence in context: A378315 A153432 A349324 * A186016 A186176 A233805
KEYWORD
nonn
AUTHOR
EXTENSIONS
Offset changed by Vincenzo Librandi, Aug 05 2016
STATUS
approved