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-1 of 1 results.

A188584 Numerator in first column of matrix exponential of A175992.

Original entry on oeis.org

1, 1, 1, 3, 1, 2, 1, 13, 3, 2, 1, 7, 1, 2, 2, 73, 1, 7, 1, 7, 2, 2, 1, 17, 3, 2, 13, 7, 1, 5, 1, 167, 2, 2, 2, 27, 1, 2, 2, 17, 1, 5, 1, 7, 7, 2, 1, 209, 3, 7, 2, 7, 1, 17, 2, 17, 2, 2, 1, 10, 1, 2, 7, 4051, 2, 5, 1, 7, 2, 5, 1, 47, 1, 2, 7, 7, 2, 5, 1, 209, 73, 2, 1, 10, 2, 2, 2, 17, 1, 10, 2, 7, 2, 2, 2
Offset: 1

Views

Author

Mats Granvik, Apr 04 2011

Keywords

Comments

Numerator in first column of exp(M) = sum(n>=0,M^n/n!) where M is the triangular matrix given as A175992.
The Dirichlet series that generates the fraction A188584/A188583 is A001113^(Riemann zeta function - 1).

Programs

  • PARI
    A175992(n,k)=if(k==n,0,if(n%k==0,1,0));
    N=40;  /* that many terms */
    M=matrix(N,N, r,c, A175992(r,c) );
    E=sum(j=0,N,M^j/j!);  /* matrix exponential */
    c1=E[,1]; /* first column */
    vector(N,j,numerator(c1[j])) /* show terms */ /* Joerg Arndt, Apr 16 2011 */

Extensions

Added sequence terms and changed title and comment lines. [Mats Granvik, Apr 14 2011]
Showing 1-1 of 1 results.