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 A244462 #5 Jul 01 2014 19:31:10 %S A244462 1,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,4,7,12,16,21,25,30,34,43,56,79,112, %T A244462 156,210,276,351,447,570,741,978,1314,1764,2367,3137,4131,5398,7058, %U A244462 9236,12161,16077,21340,28326,37573,49696,65623,86526,114122,150624 %N A244462 Number of unlabeled rooted trees with n nodes such that the minimal outdegree of inner nodes equals 8. %H A244462 Alois P. Heinz, <a href="/A244462/b244462.txt">Table of n, a(n) for n = 9..900</a> %p A244462 b:= proc(n, i, t, k) option remember; `if`(n=0, `if`(t in [0, k], %p A244462 1, 0), `if`(i<1 or t>n, 0, add(binomial(b((i-1)$2, k$2)+j-1, j)* %p A244462 b(n-i*j, i-1, max(0,t-j), k), j=0..n/i))) %p A244462 end: %p A244462 a:= n-> b(n-1$2, 8$2) -b(n-1$2, 9$2): %p A244462 seq(a(n), n=9..70); %Y A244462 Column k=8 of A244454. %Y A244462 Cf. A244537. %K A244462 nonn %O A244462 9,10 %A A244462 _Joerg Arndt_ and _Alois P. Heinz_, Jun 29 2014