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.

A283369 a(n) = Sum_{d|n} d^(4*d + 1).

Original entry on oeis.org

1, 513, 1594324, 17179869697, 476837158203126, 28430288029931296212, 3219905755813179726837608, 633825300114114700765531472385, 202755595904452569706561330874548093, 100000000000000000000000000476837158203638
Offset: 1

Views

Author

Seiichi Manyama, Mar 17 2017

Keywords

Examples

			a(6) = 1^(4+1) + 2^(8+1) + 3^(12+1) + 6^(24+1) = 28430288029931296212.
		

Crossrefs

Cf. Sum_{d|n} d^(k*d+1): A283498 (k=1), A283533 (k=2), A283535 (k=3), this sequence (k=4).

Programs

  • Mathematica
    Table[Sum[d^(4*d + 1), {d, Divisors[n]}], {n, 20}] (* Indranil Ghosh, Mar 17 2017 *)
  • PARI
    for(n=1, 20, print1(sumdiv(n, d, d^(4*d + 1)),", ")) \\ Indranil Ghosh, Mar 17 2017