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.

A120288 Numerator of 1/n^4 + 2/(n-1)^4 + 3/(n-2)^4 +...+ (n-1)/2^4 + n.

Original entry on oeis.org

1, 33, 2033, 87425, 11440331, 82653347, 58026230977, 472474237481, 38806560342253, 431701520479427, 579954645879123307, 7598398013722878661, 16804804720323979155637, 16901141697896969645401
Offset: 1

Views

Author

Alexander Adamchuk, Jul 07 2006

Keywords

Comments

p^2 divides a(p-1) for prime p>3. p divides a(p-2) for prime p>5.

Crossrefs

Programs

  • Mathematica
    Numerator[Table[Sum[Sum[1/i^4,{i,1,k}],{k,1,n}],{n,1,20}]]

Formula

a(n) = numerator[Sum[Sum[1/i^4,{i,1,k}],{k,1,n}]].