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!)
A023489 Sum of n-th Lucas number greater than 3 and n-th number that is 1 or is not a Fibonacci number. 0
5, 11, 17, 25, 38, 57, 87, 135, 213, 337, 537, 860, 1382, 2226, 3591, 5800, 9372, 15151, 24501, 39629, 64106, 103710, 167790, 271473, 439235, 710679, 1149884, 1860533, 3010385, 4870884, 7881234, 12752082, 20633279, 33385323, 54018563, 87403846, 141422368 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) = phi^(n+2) + n + log_phi(n) + O(1), where phi = 1/2 + sqrt(5)/2 is the golden ratio. - Charles R Greathouse IV, Jan 17 2012
a(n) = A000032(n+2) + A001690(n-1), n >= 2. - R. J. Mathar, Feb 01 2019
MATHEMATICA
nMax = 50; With[{luke = LucasL[Range[3, nMax + 2]], dn = Take[Join[{1}, Complement[Range[2nMax], Fibonacci[Range[2nMax]]]], nMax]}, Total /@ Thread[{luke, nMax}]] (* Harvey P. Dale, Jan 17 2012 *)
PROG
(PARI) b(n)=fibonacci(n+1)+fibonacci(n+3)
d(n)=my(k=2); n-=3; while(fibonacci(k++)<=n+k, ); n+k
a(n)=b(n)+d(n) \\ Charles R Greathouse IV, Jan 17 2012
CROSSREFS
Sequence in context: A246296 A368874 A089110 * A268307 A108294 A046869
KEYWORD
nonn
AUTHOR
EXTENSIONS
a(28)-a(37) corrected by Harvey P. Dale, Jan 17 2012
STATUS
approved

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 19 16:38 EDT 2024. Contains 371794 sequences. (Running on oeis4.)