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!)
A261031 Euler transform of Lucas numbers. 7

%I #15 Nov 11 2020 07:10:53

%S 1,1,4,8,21,44,103,217,477,999,2116,4373,9055,18464,37576,75725,

%T 152047,303158,602085,1189242,2340065,4584027,8947865,17399906,

%U 33725509,65153150,125493914,241011287,461611911,881806114,1680336592,3194346093,6058770147,11466709780

%N Euler transform of Lucas numbers.

%H Vaclav Kotesovec, <a href="/A261031/b261031.txt">Table of n, a(n) for n = 0..2000</a>

%F a(n) ~ phi^n / (2*sqrt(Pi)*n^(3/4)) * exp(-1 + 1/(2*sqrt(5)) + 2*sqrt(n) + s), where s = Sum_{k>=2} (2 + phi^k)/((phi^(2*k) - phi^k - 1)*k) = 0.9799662013576411396292209835034813778512885279062665867878344706... and phi = A001622 = (1+sqrt(5))/2 is the golden ratio. - _Vaclav Kotesovec_, Aug 07 2015

%F G.f.: exp(Sum_{k>=1} x^k*(1 + 2*x^k)/(k*(1 - x^k - x^(2*k)))). - _Ilya Gutkovskiy_, May 30 2018

%p L:= proc(n) option remember; `if`(n<2, 2-n, L(n-2)+L(n-1)) end:

%p a:= proc(n) option remember; `if`(n=0, 1, add(add(d*

%p L(d), d=numtheory[divisors](j))*a(n-j), j=1..n)/n)

%p end:

%p seq(a(n), n=0..40); # _Alois P. Heinz_, Jan 12 2017

%t CoefficientList[Series[Product[1/(1 - x^k)^LucasL[k], {k, 1, 30}], {x, 0, 30}], x]

%o (SageMath) # uses[EulerTransform from A166861]

%o a = BinaryRecurrenceSequence(1, 1, 2)

%o b = EulerTransform(a)

%o print([b(n) for n in range(34)]) # _Peter Luschny_, Nov 11 2020

%Y Cf. A000032, A166861.

%K nonn

%O 0,3

%A _Vaclav Kotesovec_, Aug 07 2015

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 00:30 EDT 2024. Contains 371917 sequences. (Running on oeis4.)