cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A211877 Number of involutions in GL(n,4).

Original entry on oeis.org

1, 21, 673, 102273, 47663617, 110981851137, 815432848809985, 30052835284679819265, 3519512226295269640765441, 2069751512310185039905834926081, 3874510079394593253089862950754189313, 36431456010689490638771956423547489198538753
Offset: 1

Views

Author

Alexander Gruber, Feb 12 2013

Keywords

Programs

  • Maple
    A211877 := proc(n)
        add( 4^(k*(n-k))*A022168(n,k),k=1..n) ;
    end proc: # R. J. Mathar, Apr 26 2013
  • Mathematica
    Sum[q^(k (n - k)) QBinomial[n, k, q], {k, 1, n}]