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.

A226931 Numerator of n + Sum(binomial(n,k)*(k/n)^k*((n-k)/n)^(n-k), k=0..n).

Original entry on oeis.org

3, 9, 53, 231, 5319, 3167, 1296273, 1604979, 64370707, 22906587, 411169704813, 610433321, 424312831956207, 2146177886409, 98731231639051, 12218411169233691, 1112291237880234922707, 2196818399875253, 2619031544578888560315813, 16827894135040576041
Offset: 1

Views

Author

N. J. A. Sloane, Jul 31 2013

Keywords

Examples

			3, 9/2, 53/9, 231/32, 5319/625, 3167/324, 1296273/117649, 1604979/131072, ...
		

Crossrefs

Denominators are in A036505. Cf. A090878, A063170.

Programs

  • PARI
    a(n) = numerator(n + sum(k=0, n, binomial(n,k)*(k/n)^k*((n-k)/n)^(n-k))); \\ Michel Marcus, Jun 11 2015