OFFSET
1,1
COMMENTS
There are Fibonacci(floor((n-2)/2)) terms with n digits (this is essentially A103609). - Ray Chandler, Oct 12 2017
REFERENCES
David Wells, The Penguin Dictionary of Curious and Interesting Numbers (Rev. ed. 1997), p. 158.
LINKS
Ray Chandler, Table of n, a(n) for n = 1..10000
EXAMPLE
439956 times 3/2 equals 659934 which is the reverse of 439956.
MATHEMATICA
Select[2 Range[10^7], 3(#/2) == FromDigits@ Reverse@ IntegerDigits@ # &] (* Giovanni Resta, Apr 08 2017 *)
PROG
(PARI) isok(n) = 3*n/2 == fromdigits(Vecrev(digits(n))); \\ Michel Marcus, Apr 09 2017
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Harvey P. Dale, Apr 08 2017
EXTENSIONS
Data corrected by Giovanni Resta, Apr 08 2017
STATUS
approved