OFFSET
1,2
COMMENTS
A000211(n) = Lucas(n) + 2 is a term for all n > 2, since the representation of Lucas(n) + 2 is 10...01 with n-1 0's between the two 1's.
LINKS
EXAMPLE
The first 10 terms are:
n a(n) A130310(a(n))
---------------------
1 0 0
2 2 1
3 6 1001
4 9 10001
5 13 100001
6 20 1000001
7 24 1001001
8 31 10000001
9 49 100000001
10 56 100010001
MATHEMATICA
lucasPalQ[n_] := Module[{s = {}, m = n, k = 1}, While[m > 0, If[m == 1, k = 1; AppendTo[s, k]; m = 0, If[m == 2, k = 0; AppendTo[s, k]; m = 0, While[LucasL[k] <= m, k++]; k--; AppendTo[s, k]; m -= LucasL[k]; k = 1]]]; PalindromeQ[IntegerDigits[Total[2^s], 2]]]; Select[Range[0, 2000], lucasPalQ]
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Amiram Eldar, Feb 17 2022
STATUS
approved