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.

A141009 E.g.f. exp(Sum_{d|M} (exp(d*x)-1)/d), M=13.

Original entry on oeis.org

1, 2, 18, 262, 4498, 88174, 1989162, 51366438, 1491069602, 47749828830, 1664928894170, 62693869629142, 2534737217687378, 109469680507411214, 5025930552213949450, 244236790780300327302, 12515419830686362586882
Offset: 0

Views

Author

R. J. Mathar, Jul 11 2008

Keywords

Comments

Also the number of partitions of {1..(13n)} that are invariant under a permutation consisting of n 13-cycles. - Danny Rorabaugh, Oct 29 2015

Crossrefs

Column 13 of A162663.

Programs

  • Mathematica
    u[0, j_]: = 1; u[k_, j_]: = u[k, j] = Sum[Binomial[k-1, i-1]Plus@@(u[k-i, j]#^(i-1)&/@Divisors[j]), {i, k}]; Table[u[n, 13], {n, 0, 30}] (* Vincenzo Librandi, Dec 12 2012, after Wouter Meeussen in similar sequences *)
    mx = 16; p = 13; Range[0, mx]! CoefficientList[ Series[ Exp[ (Exp[p*x] - p - 1)/p + Exp[x]], {x, 0, mx}], x] (* Robert G. Wilson v, Dec 12 2012 *)