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!)
A216099 Period of powers of 3 mod 10^n. 6
4, 20, 100, 500, 5000, 50000, 500000, 5000000, 50000000, 500000000, 5000000000, 50000000000, 500000000000, 5000000000000, 50000000000000, 500000000000000, 5000000000000000, 50000000000000000, 500000000000000000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
4*5^(n-1), n <= 4.
5*10^(n-2), n >= 5.
MATHEMATICA
Table[If[n<5, (4*5^n)/5, 10^n/20], {n, 20}] (* or *) Join[{4, 20, 100}, NestList[ 10#&, 500, 20]] (* Harvey P. Dale, May 31 2017 *)
PROG
(PARI) a(n)=if(n<5, 4*5^n/5, 10^n/20) \\ Charles R Greathouse IV, Mar 26 2016
CROSSREFS
Sequence in context: A103771 A005054 A370536 * A105480 A242156 A186369
KEYWORD
nonn,base,easy
AUTHOR
V. Raman, Sep 01 2012
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 April 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)