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.
%I A117887 #10 Sep 03 2017 11:29:23 %S A117887 1,4,20,145,1441,18248,280392,5063361,105063361,2463011052, %T A117887 64380375276,1856540769313,58550453144609,2004745521503984, %U A117887 74062339559431920,2936485391069247713,124376016487663499489,5604762874272465685428 %N A117887 Number of labeled trees on <= n nodes. %C A117887 A000178 = Sum_{k=1..n} k^(k-1). A001923 = Sum_{k=1..n} k^k. A061789 = Sum_{k=1..n} p(k)^p(k), p(k) = k-th prime. a(n) = number of spanning trees in complete graphs K_i on i <= n labeled nodes. Also is partial sum of counts of parking functions, noncrossing partitions, critical configurations of the chip firing game, allowable pairs sorted by a priority queue. a(14) = 58550453144609 is prime. %F A117887 a(n) = Sum_{k=2..n} k^(k-2). a(n) = Sum_{k=2..n} A000272(k). %p A117887 a:=n->sum ((j+2)^j, j=0..n): seq(a(n), n=0..17); # _Zerinvary Lajos_, Dec 17 2008 %t A117887 Table[Sum[k^(k-2),{k,2,n}],{n,2,25}] (* _Harvey P. Dale_, Jul 11 2011 *) %Y A117887 Cf. A000178, A000272, A001923, A061789. %K A117887 easy,nonn %O A117887 1,2 %A A117887 _Jonathan Vos Post_, May 03 2006