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.

A008974 Triangular number t(n) raised to power t(n).

This page as a plain text file.
%I A008974 #21 Jan 16 2018 02:49:56
%S A008974 1,27,46656,10000000000,437893890380859375,
%T A008974 5842587018385982521381124421,
%U A008974 33145523113253374862572728253364605812736,106387358923716524807713475752456393740167855629859291136
%N A008974 Triangular number t(n) raised to power t(n).
%H A008974 Vincenzo Librandi, <a href="/A008974/b008974.txt">Table of n, a(n) for n = 1..25</a>
%p A008974 [ seq( ( n*(n+1)/2 )^( n*(n+1)/2 ), n=1..10) ];
%t A008974 s=0;lst={};Do[s+=n;AppendTo[lst,s^s],{n,12}];lst (* _Vladimir Joseph Stephan Orlovsky_, Jun 11 2009 *)
%t A008974 #^#&/@Accumulate[Range[10]] (* _Harvey P. Dale_, Sep 10 2014 *)
%o A008974 (PARI) a(n) = my(t=n*(n+1)/2); t^t; \\ _Michel Marcus_, Jan 16 2018
%Y A008974 Cf. A000217.
%K A008974 nonn
%O A008974 1,2
%A A008974 _N. J. A. Sloane_
%E A008974 One more term added by _Vladimir Joseph Stephan Orlovsky_, Jun 11 2009