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.

A103884 Square array A(n,k) read by antidiagonals: row n gives coordination sequence for lattice C_n.

Original entry on oeis.org

1, 1, 8, 1, 18, 16, 1, 32, 66, 24, 1, 50, 192, 146, 32, 1, 72, 450, 608, 258, 40, 1, 98, 912, 1970, 1408, 402, 48, 1, 128, 1666, 5336, 5890, 2720, 578, 56, 1, 162, 2816, 12642, 20256, 14002, 4672, 786, 64, 1, 200, 4482, 27008, 59906, 58728, 28610, 7392, 1026, 72
Offset: 2

Views

Author

Ralf Stephan, Feb 20 2005

Keywords

Examples

			Array begins:
  1,   8,    16,     24,      32,       40,        48, ... A022144;
  1,  18,    66,    146,     258,      402,       578, ... A010006;
  1,  32,   192,    608,    1408,     2720,      4672, ... A019560;
  1,  50,   450,   1970,    5890,    14002,     28610, ... A019561;
  1,  72,   912,   5336,   20256,    58728,    142000, ... A019562;
  1,  98,  1666,  12642,   59906,   209762,    596610, ... A019563;
  1, 128,  2816,  27008,  157184,   658048,   2187520, ... A019564;
  1, 162,  4482,  53154,  374274,  1854882,   7159170, ... A035746;
  1, 200,  6800,  97880,  822560,  4780008,  21278640, ... A035747;
  1, 242,  9922, 170610, 1690370, 11414898,  58227906, ... A035748;
  1, 288, 14016, 284000, 3281280, 25534368, 148321344, ... A035749;
  ...
Antidiagonals, T(n, k), begins as:
  1;
  1,   8;
  1,  18,   16;
  1,  32,   66,   24;
  1,  50,  192,  146,   32;
  1,  72,  450,  608,  258,   40;
  1,  98,  912, 1970, 1408,  402,  48;
  1, 128, 1666, 5336, 5890, 2720, 578, 56;
		

Crossrefs

Programs

  • Magma
    A103884:= func< n,k | k eq 0 select 1 else 2*(&+[2^j*Binomial(n-k,j+1)*Binomial(2*k-1,j) : j in [0..2*k-1]]) >;
    [A103884(n,k): k in [0..n-2], n in [2..12]]; // G. C. Greubel, May 23 2023
    
  • Mathematica
    nmin = 2; nmax = 11; t[n_, 0]= 1; t[n_, k_]:= 2n*Hypergeometric2F1[1-2k, 1-n, 2, 2]; tnk= Table[ t[n, k], {n, nmin, nmax}, {k, 0, nmax-nmin}]; Flatten[ Table[ tnk[[ n-k+1, k ]], {n, 1, nmax-nmin+1}, {k, 1, n} ] ] (* Jean-François Alcover, Jan 24 2012, after formula *)
  • SageMath
    def A103884(n,k): return 1 if k==0 else 2*sum(2^j*binomial(n-k,j+1)*binomial(2*k-1,j) for j in range(2*k))
    flatten([[A103884(n,k) for k in range(n-1)] for n in range(2,13)]) # G. C. Greubel, May 23 2023

Formula

A(n,k) = Sum_{i=1..2*k} 2^i*C(n, i)*C(2*k-1, i-1), A(n,0) = 1 (array).
G.f. of n-th row: (Sum_{i=0..n} C(2*n, 2*i)*x^i)/(1-x)^n.
T(n, k) = A(n-k, k) (antidiagonals).
T(n, n-2) = A022144(n-2).
T(n, k) = 2*(n-k)*Hypergeometric2F1([1+k-n, 1-2*k], [2], 2), T(n, 0) = 1, for n >= 2, 0 <= k <= n-2. - G. C. Greubel, May 23 2023
From Peter Bala, Jul 09 2023: (Start)
T(n,k) = [x^k] Chebyshev_T(n, (1 + x)/(1 - x)), where Chebyshev_T(n, x) denotes the n-th Chebyshev polynomial of the first kind.
T(n+1,k) = T(n+1,k-1) + 2*T(n,k) + 2*T(n,k-1) + T(n-1,k) - T(n-1,k-1). (End)

Extensions

Definition clarified by N. J. A. Sloane, May 25 2023

A305721 Crystal ball sequence for the lattice C_7.

Original entry on oeis.org

1, 99, 1765, 14407, 74313, 284075, 880685, 2340495, 5529233, 11905267, 23784309, 44673751, 79684825, 136030779, 223619261, 355747103, 549905697, 828705155, 1220925445, 1762702695, 2498858857, 3484382923, 4786071885, 6484339631, 8675201969, 11472445971, 15009991829
Offset: 0

Views

Author

Seiichi Manyama, Jun 09 2018

Keywords

Comments

Partial sums of A019563.

Crossrefs

Programs

  • GAP
    b:=7;; List([0..30],n->Sum([0..b],k->Binomial(2*b,2*k)*Binomial(n+k,b))); # Muniru A Asiru, Jun 09 2018
  • Mathematica
    Array[Sum[Binomial[14, 2 k] Binomial[# + k, 7], {k, 0, 7}] &, 27, 0] (* Michael De Vlieger, Jun 11 2018 *)
    LinearRecurrence[{8,-28,56,-70,56,-28,8,-1},{1,99,1765,14407,74313,284075,880685,2340495},30] (* Harvey P. Dale, May 16 2023 *)
  • PARI
    {a(n) = sum(k=0, 7, binomial(14, 2*k)*binomial(n+k, 7))}
    
  • PARI
    Vec((1 + x)*(1 + 90*x + 911*x^2 + 2092*x^3 + 911*x^4 + 90*x^5 + x^6) / (1 - x)^8 + O(x^40)) \\ Colin Barker, Jun 09 2018
    

Formula

a(n) = 8*a(n-1) - 28*a(n-2) + 56*a(n-3) - 70*a(n-4) + 56*a(n-5) - 28*a(n-6) + 8*a(n-7) - a(n-8), for n > 7.
a(n) = Sum_{k = 0..7} binomial(14, 2*k)*binomial(n+k, 7).
G.f.: (1 + x)*(1 + 90*x + 911*x^2 + 2092*x^3 + 911*x^4 + 90*x^5 + x^6) / (1 - x)^8. - Colin Barker, Jun 09 2018
From Peter Bala, Mar 12 2024: (Start)
Sum_{k >= 1} 1/(k*a(k)*a(k-1)) = 2*ln(2) - 289/210 = 1/(99 - 3/(107 - 60/(123 - 315/(147 - ... - n^2*(4*n^2 - 1)/((2*n + 1)^2 + 2*7^2 - ...))))).
E.g.f.: exp(x)*(1 + 98*x + 1568*x^2/2! + 9408*x^3/3! + 26880*x^4/4! + 39424*x^5/5! + 28672*x^6/6! + 8192*x^7/7!).
Note that -T(14, i*sqrt(x)) = 1 + 98*x + 1568*x^2 + 9408*x^3 + 26880*x^4 + 39424*x^5 + 28672*x^6 + 8192*x^7, where T(n, x) denotes the n-th Chebyshev polynomial of the first kind. See A008310.
Row 7 of A142992. (End)
Showing 1-2 of 2 results.