OFFSET
1,3
COMMENTS
Is this sequence finite?
It is heuristically infinite because of the divergence of the harmonic series. - Charles R Greathouse IV, Sep 20 2012
LINKS
Chai Wah Wu, Table of n, a(n) for n = 1..24 (all terms < 10^1000).
EXAMPLE
317811 is in the sequence because the sum of its digits 3+1+7+8+1+1=21 is also a Fibonacci number. - Luc Stevens (lms022(AT)yahoo.com), Apr 15 2006
MAPLE
with(combinat): F:=[seq(fibonacci(n), n=2..80)]: a:=proc(n) local ff, sod: ff:=convert(fibonacci(n), base, 10): sod:=add(ff[i], i=1..nops(ff)): if member(sod, F)=true then fibonacci(n) else fi end: seq(a(n), n=2..300); # Emeric Deutsch, Apr 17 2006
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Felice Russo, Feb 25 2000
EXTENSIONS
More terms from Larry Reeves (larryr(AT)acm.org), Oct 03 2000
More terms from Emeric Deutsch, Apr 17 2006
Edited by R. J. Mathar, Aug 08 2008
STATUS
approved
