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.

A099827 Generalized harmonic number H(n,5) = Sum_{k=1..n} 1/k^5 multiplied by (n!)^5.

Original entry on oeis.org

0, 1, 33, 8051, 8252000, 25795462624, 200610400564224, 3371852494046112768, 110492114540967125581824, 6524555433591956305924325376, 652461835742417609568446054400000, 105080260346474296336209157187174400000
Offset: 0

Views

Author

Alexander Adamchuk, Oct 27 2004

Keywords

Comments

Note that a(n) is divisible by n, except when n is prime. Also, a(n+1) is divisible by n, except when n is prime or n = 0.

Examples

			a(2) = (2!)^5 * (1 + 1/2^5) = 2^5 + 1 = 33,
a(3) = (3!)^5 * (1 + 1/2^5 + 1/3^5) = 6^5 + 3^5 + 1 = 8051.
		

Crossrefs

Column k = 5 of A291556.

Programs

  • Mathematica
    Table[(n!)^5*Sum[1/k^5, {k, 1, n}], {n, 0, 13}] or Table[(n!)^5*HarmonicNumber[n, 5], {n, 0, 13}]

Formula

a(n) = (n!)^5 * Sum_{k=1..n} 1/k^5 = (n!)^5 * HarmonicNumber[n, 5] = (n!)^5 * A099828(n)/A069052(n).
a(0) = 0, a(1) = 1, a(n+1) = (n^5 + (n+1)^5)*a(n) - n^10*a(n-1) for n > 0. - Seiichi Manyama, Aug 24 2017
a(n) ~ Zeta(5) * (2*Pi)^(5/2) * n^(5*n+5/2) / exp(5*n). - Vaclav Kotesovec, Aug 27 2017
Sum_{n>=0} a(n) * x^n / (n!)^5 = polylog(5,x) / (1 - x). - Ilya Gutkovskiy, Jul 14 2020

Extensions

a(0) = 0 prepended by Seiichi Manyama, Aug 23 2017
Name edited by Petros Hadjicostas, May 10 2020

A210694 T(n,k)=Number of (n+1)X(n+1) -k..k symmetric matrices with every 2X2 subblock having sum zero.

Original entry on oeis.org

5, 13, 9, 25, 35, 17, 41, 91, 97, 33, 61, 189, 337, 275, 65, 85, 341, 881, 1267, 793, 129, 113, 559, 1921, 4149, 4825, 2315, 257, 145, 855, 3697, 10901, 19721, 18571, 6817, 513, 181, 1241, 6497, 24583, 62281, 94509, 72097, 20195, 1025, 221, 1729, 10657, 49575
Offset: 1

Views

Author

R. H. Hardin, with R. J. Mathar in the Sequence Fans Mailing List, Mar 30 2012

Keywords

Comments

Table starts
...5....13.....25......41.......61.......85.......113.......145........181
...9....35.....91.....189......341......559.......855......1241.......1729
..17....97....337.....881.....1921.....3697......6497.....10657......16561
..33...275...1267....4149....10901....24583.....49575.....91817.....159049
..65...793...4825...19721....62281...164305....379793....793585....1531441
.129..2315..18571...94509...358061..1103479...2920695...6880121...14782969
.257..6817..72097..456161..2070241..7444417..22542017..59823937..143046721
.513.20195.281827.2215269.12030821.50431303.174571335.521638217.1387420489
Solutions are determined by the diagonal, extended with x(i,j) = (x(i,i)+x(j,j))/2 * (-1)^(i-j)

Examples

			Some solutions for n=3 k=4
.-2..1.-3..0....0.-1..0..1....4..0..1.-1....2.-1.-1.-2....3.-2..1..0
..1..0..2..1...-1..2.-1..0....0.-4..3.-3...-1..0..2..1...-2..1..0.-1
.-3..2.-4..1....0.-1..0..1....1..3.-2..2...-1..2.-4..1....1..0.-1..2
..0..1..1..2....1..0..1.-2...-1.-3..2.-2...-2..1..1..2....0.-1..2.-3
		

Crossrefs

Column 1 is A000051(n+1)
Column 2 is A007689(n+1)
Column 3 is A074605(n+1)
Column 4 is A074611(n+1)
Column 5 is A074615(n+1)
Column 6 is A074619(n+1)
Column 7 is A074622(n+1)
Column 8 is A074624(n+1)
Row 1 is A001844
Row 2 is A005898
Row 3 is A008514
Row 4 is A008515
Row 5 is A008516
Row 6 is A036085
Row 7 is A036086
Row 8 is A036087

Formula

T(n,k)=k^(n+1)+(k+1)^(n+1)
Showing 1-2 of 2 results.