login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A188584
Numerator in first column of matrix exponential of A175992.
1
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,4
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).
PROG
(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 */
CROSSREFS
Sequence in context: A321889 A321751 A364906 * A103514 A324123 A016570
KEYWORD
nonn,frac
AUTHOR
Mats Granvik, Apr 04 2011
EXTENSIONS
Added sequence terms and changed title and comment lines. [Mats Granvik, Apr 14 2011]
STATUS
approved