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.

Showing 1-2 of 2 results.

A015123 Triangle of q-binomial coefficients for q=-10.

Original entry on oeis.org

1, 1, 1, 1, -9, 1, 1, 91, 91, 1, 1, -909, 9191, -909, 1, 1, 9091, 918191, 918191, 9091, 1, 1, -90909, 91828191, -917272809, 91828191, -90909, 1, 1, 909091, 9182728191, 917364637191, 917364637191, 9182728191, 909091, 1, 1, -9090909, 918273728191
Offset: 0

Views

Author

Keywords

Comments

May be read as a symmetric triangular (T[n,k]=T[n,n-k]; k=0,...,n; n=0,1,...) or square array (A[n,r]=A[r,n]=T[n+r,r], read by antidiagonals). The diagonals in the former, or row/columns in the latter, are then (k=0,...,12): A000012, A014992, A015261, A015278, A015298, A015316, A015333, A015350, A015367, A015382, A015398, A015417, A015433. - M. F. Hasler, Nov 04 & Nov 05 2012

Crossrefs

Cf. analog triangles for other q: A015109 (q=-2), A015110 (q=-3), A015112 (q=-4), A015113 (q=-5), A015116 (q=-6), A015117 (q=-7), A015118 (q=-8), A015121 (q=-9), A015124 (q=-11), A015125 (q=-12), A015129 (q=-13), A015132 (q=-14), A015133 (q=-15). - M. F. Hasler, Nov 04 2012
Cf. analog triangles for positive q=2,...,24: A022166 (q=2), A022167 (q=3), A022168, A022169, A022170, A022171, A022172, A022173, A022174 (q=10), A022175, A022176, A022177, A022178, A022179, A022180, A022181, A022182, A022183, A022184 (q=20), A022185, A022186, A022187, A022188. - M. F. Hasler, Nov 05 2012

Programs

  • Mathematica
    Table[QBinomial[n, k, -10], {n, 0, 10}, {k, 0, n}] // Flatten (* Jean-François Alcover, Apr 09 2016 *)
  • PARI
    T015123(n, k, q=-10)=prod(i=1, k, (q^(1+n-i)-1)/(q^i-1)) \\ (Indexing is that of the triangular array: 0 <= k <= n = 0,1,2,...) - M. F. Hasler, Nov 04 2012

A015265 Gaussian binomial coefficient [ n,2 ] for q = -13.

Original entry on oeis.org

1, 157, 26690, 4508570, 761974851, 128773405047, 21762709934980, 3677897920745140, 621564749363392901, 105044442632566365137, 17752510805031727164870, 3000174326048697741925710, 507029461102251552321630151, 85687978926280231101185088427
Offset: 2

Views

Author

Olivier Gérard, Dec 11 1999

Keywords

References

  • J. Goldman and G.-C. Rota, The number of subspaces of a vector space, pp. 75-83 of W. T. Tutte, editor, Recent Progress in Combinatorics. Academic Press, NY, 1969.
  • I. P. Goulden and D. M. Jackson, Combinatorial Enumeration. Wiley, NY, 1983, p. 99.
  • M. Sved, Gaussians and binomials, Ars. Combinatoria, 17A (1984), 325-351.

Crossrefs

Cf. Gaussian binomial coefficients [n,2] for q=-2,...,-12: A015249, A015251, A015253, A015255, A015257 A015258, A015259, A015260, A015261, A015262, A015264.
Cf. Gaussian binomial coefficients [n,r] for q=-13: A015286 (r=3), A015303 (r=4), A015321 (r=5), A015337 (r=6), A015355 (r=7), A015370 (r=8), A015385 (r=9), A015402 (r=10), A015422 (r=11), A015438 (r=12). - M. F. Hasler, Nov 03 2012

Programs

  • Magma
    I:=[1,157,26690]; [n le 3 select I[n] else 157*Self(n-1)+2041*Self(n-2)-2197*Self(n-3): n in [1..20]]; // Vincenzo Librandi, Oct 28 2012
    
  • Mathematica
    Table[QBinomial[n, 2, -13], {n, 2, 20}] (* Vincenzo Librandi, Oct 28 2012 *)
  • PARI
    A015265(n,q=-13)=(1-q^n)*(q^(n-1)-1)/2352 \\ M. F. Hasler, Nov 03 2012
  • Sage
    [gaussian_binomial(n,2,-13) for n in range(2,14)] # Zerinvary Lajos, May 27 2009
    

Formula

G.f.: x^2/((1-x)*(1+13*x)*(1-169*x)). - Ralf Stephan, Apr 01 2004
a(2) = 1, a(3) = 157, a(4) = 26690, a(n) = 157*a(n-1) + 2041*a(n-2) - 2197*a(n-3). - Vincenzo Librandi, Oct 28 2012
a(n) = (1/2352)*( (1 - (-13)^n)*((-13)^(n-1) - 1) ). - M. F. Hasler, Nov 03 2012
Showing 1-2 of 2 results.