login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A004688 Fibonacci numbers written in base 5. 3
0, 1, 1, 2, 3, 10, 13, 23, 41, 114, 210, 324, 1034, 1413, 3002, 4420, 12422, 22342, 40314, 113211, 204030, 322241, 1031321, 1404112, 2440433, 4400100, 12341033, 22241133, 40132221, 112423404, 203111130 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
Sequence of last digit has period length of A001175(5)=20. Digits are almost evenly distributed. - Carmine Suriano, Mar 30 2012
LINKS
Carmine Suriano and Vincenzo Librandi, Table of n, a(n) for n = 0..1000 (Carmine Suriano for n = 0..73)
MAPLE
read("transforms") :
A004688 := proc(n)
convert( combinat[fibonacci](n), base, 5) ;
ListTools[Reverse](%) ;
digcatL(%) ;
end proc: # R. J. Mathar, Apr 01 2012
MATHEMATICA
Table[BaseForm[Fibonacci[n], 5], {n, 1, 20, 1}] (* Vladimir Joseph Stephan Orlovsky, Jul 23 2008 *)
FromDigits[IntegerDigits[#, 5]]& / @Fibonacci[Range[0, 50]] (* Vincenzo Librandi, Jun 07 2013 *)
PROG
(PARI) vector(50, n, n--; fromdigits(digits(fibonacci(n), 5))) \\ G. C. Greubel, Oct 09 2018
(Magma) [Seqint(Intseq(Fibonacci(n), 5)): n in [0..50]]; // G. C. Greubel, Oct 09 2018
CROSSREFS
Cf. A000045 (Fibonacci), A007091 (numbers in base 5).
Sequence in context: A256214 A256213 A256414 * A024852 A023856 A267008
KEYWORD
nonn,base,easy
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified March 28 14:38 EDT 2024. Contains 371254 sequences. (Running on oeis4.)