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!)
A353147 Decimal repunits written in base 8. 6
0, 1, 13, 157, 2127, 25547, 331007, 4172107, 52305307, 647665707, 10216432707, 122621414707, 1473657200707, 20126330410707, 241540165130707, 3120702223570707, 37450626705270707, 473627744665470707, 6125757360430070707, 75533532545361070707 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = A007094(A002275(n)).
PROG
(PARI) a(n) = fromdigits(digits((10^n-1)/9, 8));
(Python)
def a(n): return 0 if n == 0 else int(oct(int("1"*n))[2:])
print([a(n) for n in range(13)]) # Michael S. Branicky, Apr 26 2022
CROSSREFS
Sequence in context: A125470 A165151 A016125 * A175519 A015470 A084328
KEYWORD
nonn,base,easy
AUTHOR
Seiichi Manyama, Apr 26 2022
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 19 23:40 EDT 2024. Contains 371798 sequences. (Running on oeis4.)