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.

A357728 Square array T(n,k), n>=0, k>=0, read by antidiagonals, where column k is the expansion of e.g.f. cos( sqrt(k) * (exp(x) - 1) ).

Original entry on oeis.org

1, 1, 0, 1, 0, 0, 1, 0, -1, 0, 1, 0, -2, -3, 0, 1, 0, -3, -6, -6, 0, 1, 0, -4, -9, -10, -5, 0, 1, 0, -5, -12, -12, 10, 33, 0, 1, 0, -6, -15, -12, 45, 190, 266, 0, 1, 0, -7, -18, -10, 100, 465, 1106, 1309, 0, 1, 0, -8, -21, -6, 175, 852, 2394, 4438, 4905, 0, 1, 0, -9, -24, 0, 270, 1345, 4004, 7827, 9978, 11516, 0
Offset: 0

Views

Author

Seiichi Manyama, Oct 11 2022

Keywords

Examples

			Square array begins:
  1,  1,   1,   1,   1,   1, ...
  0,  0,   0,   0,   0,   0, ...
  0, -1,  -2,  -3,  -4,  -5, ...
  0, -3,  -6,  -9, -12, -15, ...
  0, -6, -10, -12, -12, -10, ...
  0, -5,  10,  45, 100, 175, ...
		

Crossrefs

Columns k=0-4 give: A000007, A121867, A357725, A357726, A357727.
Main diagonal gives A357729.

Programs

  • PARI
    T(n, k) = sum(j=0, n\2, (-k)^j*stirling(n, 2*j, 2));
    
  • PARI
    Bell_poly(n, x) = exp(-x)*suminf(k=0, k^n*x^k/k!);
    T(n, k) = round((Bell_poly(n, sqrt(k)*I)+Bell_poly(n, -sqrt(k)*I)))/2;

Formula

T(n,k) = Sum_{j=0..floor(n/2)} (-k)^j * Stirling2(n,2*j).
T(n,k) = ( Bell_n(sqrt(k) * i) + Bell_n(-sqrt(k) * i) )/2, where Bell_n(x) is n-th Bell polynomial and i is the imaginary unit.

A357721 a(n) = Sum_{k=0..floor(n/2)} (-n)^k * Stirling1(n,2*k).

Original entry on oeis.org

1, 0, -2, 9, -28, 0, 1200, -16464, 167904, -1393200, 7429240, 43124400, -2404571904, 55590286752, -1027511503200, 16489054310400, -222885864448000, 1994839594780032, 14489184835474272, -1470395490046560000, 54581408106475622400, -1608207353670788640000
Offset: 0

Views

Author

Seiichi Manyama, Oct 10 2022

Keywords

Crossrefs

Main diagonal of A357720.

Programs

  • PARI
    a(n) = sum(k=0, n\2, (-n)^k*stirling(n, 2*k, 1));
    
  • PARI
    a(n) = round(n!*polcoef(cos(sqrt(n)*log(1+x+x*O(x^n))), n));
    
  • PARI
    a(n) = (-1)^n*round((prod(k=0, n-1, sqrt(n)*I+k)+prod(k=0, n-1, -sqrt(n)*I+k)))/2;

Formula

a(n) = n! * [x^n] cos( sqrt(n) * log(1+x) ).
a(n) = (-1)^n * ( (sqrt(n) * i)_n + (-sqrt(n) * i)_n )/2, where (x)_n is the Pochhammer symbol and i is the imaginary unit.
Showing 1-2 of 2 results.