login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A007553 Logarithmic transform of Fibonacci numbers.
(Formerly M4329)
6

%I M4329 #56 Dec 26 2021 22:10:20

%S 1,1,1,1,7,5,85,335,1135,15245,13475,717575,4256825,29782325,

%T 525045275,243258625,56809006625,415670267875,5068080417875,

%U 104229929847625,60861649495625,20784245979986875,169274937975443125,3318579283890780625,75028912866554839375

%N Logarithmic transform of Fibonacci numbers.

%C The coefficients of the e.g.f. log(Sum_{n>=0} Fibonacci(n+1)*x^n/n!) produce the sequence [1,1,-1,-1,7,-5,-85,...], offset 0. - _Peter Bala_, Jan 19 2011

%C The series reversion of Sum_{n>=1} Fibonacci(n)*x^n/n is an e.g.f. whose coefficient sequence [1,-1,-1,7,-5,-85,335,1135,...] (offset 1) appears to be a signed version of this sequence. - _Peter Bala_, Jan 19 2011

%C E.g.f. A(x), A(x)=x*B(x) satisfies the differential equation B'(x) = 1 + B(x) - B(x)*B(x). - _Vladimir Kruchinin_, Nov 03 2011

%D N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

%H Vaclav Kotesovec, <a href="/A007553/b007553.txt">Table of n, a(n) for n = 1..340</a>

%H M. Bernstein and N. J. A. Sloane, <a href="http://arXiv.org/abs/math.CO/0205301">Some canonical sequences of integers</a>, Linear Alg. Applications, 226-228 (1995), 57-72; erratum 320 (2000), 210. [Link to arXiv version]

%H M. Bernstein and N. J. A. Sloane, <a href="/A003633/a003633_1.pdf">Some canonical sequences of integers</a>, Linear Alg. Applications, 226-228 (1995), 57-72; erratum 320 (2000), 210. [Link to Lin. Alg. Applic. version together with omitted figures]

%H N. J. A. Sloane, <a href="/transforms.txt">Transforms</a>

%H <a href="/index/Lo#logarithmic">Index entries for sequences related to logarithmic numbers</a>

%F b(n) = b(n-1) - Sum_{i=1..n-2} b(i)*b(n-1-i)*binomial(n-1,i), b(0)=1. a(n+1) = abs(b(n)). - _Vladimir Kruchinin_, Nov 03 2011

%F Let e.g.f. E(x) = log(1 + Sum_{n>=1} Fibonacci(n+1)*x^n/n!), then g.f. A(x)=x*(1+1/Q(0)), where Q(k) = 1/(x*(k+1)) + 1 + 1/Q(k+1); (continued fraction). - _Sergei N. Gladkovskii_, May 07 2013

%F Let F(x) = log(Sum_{n>=0} Fibonacci(n+1)*x^n/n!) be the e.g.f., produce the sequence [1,1,-1,-1,7,-5,-85,...], then g.f. A(x)= 1 + x/Q(0), where Q(k) = 1 + x*(2*k+1) + x^2*(2*k+1)*(2*k+2)/(1 + x*(2*k+2) + x^2*(2*k+2)*(2*k+3)/Q(k+1) ) ; (continued fraction). - _Sergei N. Gladkovskii_, Sep 23 2013

%F a(n) ~ 2*(n-1)! * abs(cos(n*arctan(Pi/log(2/(3+sqrt(5)))))) * (5/(Pi^2+log(2/(3+sqrt(5)))^2))^(n/2). - _Vaclav Kotesovec_, Jun 24 2014

%p b:= proc(n) option remember; (t-> `if`(n=0, 0, t(n) -add(j*t(n-j)*

%p binomial(n, j)*b(j), j=1..n-1)/n))(i->(<<0|1>, <1|1>>^i)[2, 2])

%p end:

%p a:= n-> abs(b(n)):

%p seq(a(n), n=1..30); # _Alois P. Heinz_, Mar 06 2018

%t FullSimplify[Abs[Rest[CoefficientList[Series[-2*x/(1+Sqrt[5]) - Log[5+Sqrt[5]] + Log[2+(3+Sqrt[5])*E^(Sqrt[5]*x)], {x, 0, 15}], x] * Range[0, 15]!]]] (* _Vaclav Kotesovec_, Jun 24 2014 *)

%o (Maxima)

%o b(n):=if n=0 then 1 else b(n-1)-sum(b(i)*b(n-1-i)*binomial(n-1,i),i,1,n-2);

%o a(n):=if n=0 then 0 else abs(b(n-1)); # _Vladimir Kruchinin_, Nov 03 2011

%o (Maxima)

%o b(n):=if n=1 then 1 else sum((n+k-1)!*sum(((-1)^(j)/(k-j)!*sum(((sqrt(5)+1)^(n+j-i-1)*5^((i-j)/2)*stirling1(i,j)*2^(-n-j+i+1)*binomial(n+j-2,i-1))/i!,i,j,n+j-1)),j,1,k),k,1,n-1);

%o a(n):=if n=1 then 1 else abs(b(n-1));

%o makelist(ratsimp(a(n)),n,1,10); # _Vladimir Kruchinin_, Nov 17 2012

%o (Sage)

%o @CachedFunction

%o def c(n,k) :

%o if n==k: return 1

%o if k<1 or k>n: return 0

%o return ((n-k)//2+1)*c(n-1,k-1)-2*k*c(n-1,k+1)

%o @CachedFunction

%o def A007553(n):

%o return abs(add(c(n,k) for k in (0..n)))

%o [A007553(n) for n in (0..25)] # _Peter Luschny_, Jun 10 2014

%K nonn

%O 1,5

%A _N. J. A. Sloane_

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 17:51 EDT 2024. Contains 371962 sequences. (Running on oeis4.)