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.

A085741 a(n) = T(n)^n, where T() are the triangular numbers (A000217).

Original entry on oeis.org

1, 1, 9, 216, 10000, 759375, 85766121, 13492928512, 2821109907456, 756680642578125, 253295162119140625, 103510234140112521216, 50714860157241037295616, 29345269354638035222576971
Offset: 0

Views

Author

Jon Perry, Jul 21 2003

Keywords

Examples

			a(3) = T(3)^3 = 6^3 = 216.
		

Crossrefs

Cf. A000217.
Essentially the same as A061718.

Programs

  • Magma
    [((n*(n+1))/2)^n: n in [0..20]]; // Vincenzo Librandi, Sep 14 2011
  • Maple
    a:=n->mul(sum(j, j=1..n),k=1..n): seq(a(n), n=0..13); # Zerinvary Lajos, Jun 02 2007
  • Mathematica
    With[{rnn=Range[20]},Join[{1},First[#]^Last[#]&/@Thread[ {Accumulate[ rnn],  rnn}]]] (* Harvey P. Dale, Dec 08 2013 *)
  • PARI
    a(n) = (n*(n+1)/2)^n; \\ Michel Marcus, Feb 19 2019
    

Formula

a(n) = ((n*(n+1))/2)^n. - Vincenzo Librandi, Sep 14 2011

Extensions

More terms from Ray Chandler, Nov 09 2003