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!)
A118944 n-th (starting from the right) decimal digit of 11^n. 2
1, 2, 3, 4, 6, 7, 9, 1, 3, 5, 8, 1, 4, 7, 1, 5, 0, 5, 1, 7, 4, 1, 9, 8, 8, 9, 1, 4, 8, 4, 1, 1, 2, 5, 1, 9, 0, 4, 1, 2, 7, 7, 2, 2, 8, 1, 1, 0, 7, 3, 1, 0, 2, 8, 0, 9, 7, 6, 8, 4, 9, 4, 2, 7, 3, 4, 3, 6, 9, 7, 7, 5, 1, 2, 8, 0, 9, 8, 1, 4, 2, 5, 4, 0, 9, 8, 7, 9, 0, 0, 3, 7, 6, 7, 6, 3, 5, 9, 8 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = floor(11^n / 10^(n-1)) mod 10. - Andrew Howroyd, Feb 11 2018
MATHEMATICA
Table[IntegerDigits[11^n][[ -n]], {n, 99}]
Table[NumberDigit[11^n, n-1], {n, 100}] (* Harvey P. Dale, Mar 22 2024 *)
PROG
(PARI) a(n) = 11^n \ 10^(n-1) % 10; \\ Andrew Howroyd, Feb 11 2018
CROSSREFS
Sequence in context: A135604 A345437 A084826 * A132988 A363997 A342760
KEYWORD
base,nonn
AUTHOR
Zak Seidov, May 06 2006
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 23 05:16 EDT 2024. Contains 371906 sequences. (Running on oeis4.)