OFFSET
1,2
COMMENTS
A000204 INTERSECT A011540 is a subsequence. As a consequence of Carmichael's theorem, the product of the digits of terms in the sequence must be in the set {0, 1, 2, 3, 5, 8, 21, 144} and if a term is zeroless (A052382), then at most 6 digits are not equal to 1. Conjecture: all terms > 18 have a 0 digit, i.e. is a member of A011540. - Chai Wah Wu, Mar 12 2016
LINKS
Chai Wah Wu, Table of n, a(n) for n = 1..1000
EXAMPLE
18 is in the sequence because (1)it is a Lucas number and (2)the product of its digits 1*8=8 is a Fibonacci number.
MATHEMATICA
lim=50; fn=Table[Fibonacci[k], {k, 0, lim}] ; ln=Table[LucasL[n, 1], {n, lim}] ; Select[ln, MemberQ[fn, Times@@IntegerDigits[#]]&] (* James C. McMahon, Sep 25 2024 *)
PROG
(Python)
from operator import mul
from functools import reduce
A117769_list, a, b = [], 2, 1
for i in range(10**3):
if reduce(mul, (int(d) for d in str(b))) in (0, 1, 2, 3, 5, 8, 21, 144):
A117769_list.append(b)
a, b = b, a+b # Chai Wah Wu, Mar 13 2016
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Luc Stevens (lms022(AT)yahoo.com), Apr 15 2006
EXTENSIONS
a(24) corrected and offset changed by Chai Wah Wu, Mar 12 2016
STATUS
approved