OFFSET
2,3
COMMENTS
The pattern of increasing frequency of repetition of digits is clear.
FORMULA
From Enrique Pérez Herrero, Jun 14 2010: (Start)
a(n) = mod(floor(5*n/10^(floor(log_10(5*n)))),5), this formula comes from the modulus 5 of the first digit of 5*n.
a(10^n) = 1. (End)
EXAMPLE
a(61) = 3 as, 61*5 = 305, digit reversed = 503 == 3 (mod 5).
MATHEMATICA
A084054[n_Integer]:=Mod[FromDigits[Reverse[IntegerDigits[5*n]]], 5]; (* Enrique Pérez Herrero, Jun 14 2010 *)
(* Alternative: *)
A084054[n_Integer]:=Mod[Floor[5*n/10^Floor[Log[10, 5*n]]], 5] (* Enrique Pérez Herrero, Jun 14 2010 *)
CROSSREFS
KEYWORD
base,easy,nonn
AUTHOR
Amarnath Murthy and Meenakshi Srikanth (menakan_s(AT)yahoo.com), May 26 2003
EXTENSIONS
More terms from Ray Chandler, May 27 2003
STATUS
approved
