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 A103738 #17 Jul 02 2025 16:02:02 %S A103738 1,1,11,38,274,2844,21888,231888,2580912,37879200,459884160, %T A103738 7372650240,112624905600,2002334100480,37047155846400,721997863372800, %U A103738 14458523340441600,320885263596441600,7222523219238297600,172441642330718208000,4367517061604788224000 %N A103738 a(n) = n! * (sum of reciprocals of parts in all partitions of n into distinct parts). %H A103738 Alois P. Heinz, <a href="/A103738/b103738.txt">Table of n, a(n) for n = 1..400</a> %F A103738 E.g.f.: A(x)*B(x), where A(x) = Sum_{k>0} x^k/(k*(1+x^k)) and B(x) = Product_{k>0} (1 + x^k). %p A103738 gf:=sum(x^k/k/(1+x^k), k=1..50)*product((1+x^k), k=1..50): s:=series(gf, x, 50): for n from 1 to 30 do printf(`%d,`,coeff(s, x, n)*n!) od: # _James Sellers_, Apr 10 2005 %p A103738 # second Maple program: %p A103738 b:= proc(n, i) option remember; `if`(n=0, [1, 0], `if`(i<1, 0, %p A103738 b(n, i-1)+`if`(i>n, 0, (p-> p+[0, p[1]/i])(b(n-i, i-1))))) %p A103738 end: %p A103738 a:= n-> n!*b(n$2)[2]: %p A103738 seq(a(n), n=1..30); # _Alois P. Heinz_, Sep 11 2014 %t A103738 b[n_, i_] := b[n, i] = If[n == 0, {1, 0}, If[i < 1, {0, 0}, b[n, i - 1] + If[i > n, 0, Function[p, p + {0, p[[1]]/i}][b[n - i, i - 1]]]]]; a[n_] := n!*b[n, n][[2]]; Table[a[n], {n, 1, 30}] (* _Jean-François Alcover_, Jan 10 2016, after _Alois P. Heinz_ *) %Y A103738 Cf. A057623. %K A103738 easy,nonn %O A103738 1,3 %A A103738 _Vladeta Jovovic_, Mar 27 2005 %E A103738 More terms from _James Sellers_, Apr 10 2005