The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A068498 Fibonacci numbers whose sum of decimal digits is greater than its index. 2
8, 89, 377, 987, 1597, 2584, 6765, 28657, 46368, 196418, 3524578, 5702887, 39088169, 63245986, 267914296, 4807526976, 7778742049, 139583862445, 591286729879, 17167680177565, 27777890035288, 1304969544928657, 5527939700884757, 8944394323791464 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
4.5 log(phi)/log(10) = 0.94... < 1, so this sequence is probably finite. The last term appears to be a(224) = F_5832 = 2927...6784; if there is another term it is greater than 10^20000. - Charles R Greathouse IV, Nov 19 2010
LINKS
EXAMPLE
F(11)=89 and 8+9=17 > 11, so 89 is the term of this sequence.
MATHEMATICA
Fibonacci[#]&/@Select[Range[100], Total[IntegerDigits[Fibonacci[#]]]>#&] (* Harvey P. Dale, Apr 14 2014 *)
PROG
(Haskell)
a068498 n = a068498_list !! (n-1)
a068498_list = f [0..] a000045_list where
f (u:us) (v:vs) = if u < a007953 v then v : f us vs else f us vs
-- Reinhard Zumkeller, Apr 15 2014, Dec 16 2013
(PARI) lista(nn) = {for(n=1, nn, if (sumdigits(f=fibonacci(n)) > n, print1(f, ", "))); } \\ Michel Marcus, Apr 15 2014
CROSSREFS
Sequence in context: A107677 A084005 A137494 * A061000 A240457 A319842
KEYWORD
nice,nonn,base
AUTHOR
Shyam Sunder Gupta, Mar 25 2002
EXTENSIONS
Corrected and extended by Harvey P. Dale, Apr 14 2014
Haskell program and b-file corrected. Thanks to Harvey P. Dale. - Reinhard Zumkeller, Apr 15 2014
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 May 14 14:46 EDT 2024. Contains 372533 sequences. (Running on oeis4.)