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.

A372199 a(n) = n! * F(n) * H(n), where F(n) is the n-th Fibonacci number and H(n) the n-th harmonic number.

This page as a plain text file.
%I A372199 #18 Apr 24 2024 06:07:21
%S A372199 1,3,22,150,1370,14112,169884,2301264,34903584,584575200,10728401760,
%T A372199 214047774720,4614042856320,106866549054720,2646889430976000,
%U A372199 69814736722483200,1953778728154982400,57822137143219814400,1804373878844546150400,59213693468692224000000
%N A372199 a(n) = n! * F(n) * H(n), where F(n) is the n-th Fibonacci number and H(n) the n-th harmonic number.
%F A372199 E.g.f.: (5*x*log(-x^2 - x + 1) - sqrt(5)*(x - 2)*(log(2 - (sqrt(5) + 1)*x) -log((sqrt(5) - 1)*x + 2))) / (10*x*(x^2 + x - 1)).
%F A372199 a(n) = n! * A000045(n) * A001008(n) / A002805(n).
%F A372199 a(n) = A000045(n) * A000254(n) / A002805(n). - _R. J. Mathar_, Apr 24 2024
%F A372199 D-finite with recurrence 5*a(n) +5*(-2*n+1)*a(n-1) +(-5*n^2+10*n+1)*a(n-2) +(10*n^3-45*n^2+58*n-14)*a(n-3) +(5*n^4-40*n^3+109*n^2-108*n+16)*a(n-4) +2*(n-4)^3*a(n-5) +(n-4)^2*(n-5)^2*a(n-6)=0. - _R. J. Mathar_, Apr 24 2024
%p A372199 H := proc(n)
%p A372199     add(1/i,i=1..n) ;
%p A372199 end proc:
%p A372199 A372199 := proc(n)
%p A372199     n!*A000045(n)*H(n) ;
%p A372199 end proc:
%p A372199 seq(A372199(n),n=1..70) ; # _R. J. Mathar_, Apr 24 2024
%t A372199 a[n_] := n! Fibonacci[n] HarmonicNumber[n]; Array[a,20] (* _Stefano Spezia_, Apr 22 2024 *)
%Y A372199 Cf. A000045, A001008, A002805.
%K A372199 nonn
%O A372199 1,2
%A A372199 _Vladimir Kruchinin_, Apr 21 2024