OFFSET
1,2
COMMENTS
If m is in the sequence then all numbers of the form g(m,s,t) for nonnagative integers s and t are in the sequence (the function g has been defined in the sequence A101704), for example g(3267,1,1)= 326703267 is in the sequence. If n=0 or n>1 then 33*(10^n-1) is in the sequence.
There are Fibonacci(floor((n-2)/2)) terms with n digits, n>1 (this is essentially A103609). - Ray Chandler, Oct 12 2017
LINKS
Ray Chandler, Table of n, a(n) for n = 1..10000
EXAMPLE
g(3267,10,2) = 32670000000000326700000000003267 is in the sequence
because reversal(32670000000000326700000000003267) =
76230000000000762300000000007623 =
(7/3)*32670000000000326700000000003267, g(3267,0,4) =
32673267326732673267 is in the sequence because
reversal(32673267326732673267) = 76237623762376237623 =
(7/3)*32673267326732673267.
MATHEMATICA
Do[If[FromDigits[Reverse[IntegerDigits[n]]] == (7/3)*n, Print[n]], {n, 100000000}]
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Farideh Firoozbakht, Jan 01 2005
EXTENSIONS
Terms a(8) onward from Max Alekseyev, Aug 18 2013
STATUS
approved