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.

A187547 L(n)H(n+1), product of the central Lah number L(n) and the harmonic number H(n).

This page as a plain text file.
%I A187547 #7 Mar 30 2012 18:55:29
%S A187547 1,3,66,2500,134260,9335088,796938912,80671795776,9446603680800,
%T A187547 1256254443100800,187033518310129920,30821040496874234880,
%U A187547 5569495264653352381440,1095113648992295923200000,232773183612995427763200000,53186532693832607435089920000
%N A187547 L(n)H(n+1), product of the central Lah number L(n) and the harmonic number H(n).
%F A187547 Recurrence:
%F A187547 (n+3)(n+2)(n+1)a(n+2)-4(2n+3)^2(2n+5)(n+1)a(n+1)+16(2n+3)^2(2n+1)^2(n+2)a(n)-144delta(n,0)=0.
%p A187547 a := n -> if n=0 then 1 else binomial(2*n-1,n-1)*(2*n)!/n! fi;
%p A187547 seq(a(n)*sum(1/k,k=1..n+1),n=0..12);
%t A187547 a[n_] := If[n == 0, 1, Binomial[2n - 1, n - 1](2n)!/n!]
%t A187547 Table[a[n]HarmonicNumber[n + 1], {n, 0, 20}]
%o A187547 (Maxima) a(n):= if n=0 then 1 else binomial(2*n-1,n-1)*(2*n)!/n!;
%o A187547 makelist(a(n)*sum(1/k,k,1,n+1),n,0,12);
%Y A187547 Cf. A187536, A008297, A111596, A187536, A187538, A187539, A187540, A187542, A187543, A187544, A187545, A187546,  A187548.
%K A187547 nonn,easy
%O A187547 0,2
%A A187547 _Emanuele Munarini_, Mar 11 2011