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!)
A113023 Number of terms in A095810 which have n digits. 3
5, 18, 90, 450, 2250, 11250, 56250, 281250, 1406250, 7031250, 35156250, 175781250 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(n+1)/a(n) = ~5.
LINKS
FORMULA
t = sorted union of 2^k (mod 10^n), 0<k<=5^n; then count only those which have n digits.
Conjecture: a(n) = 18*5^(n-2) for n>1. - Mohammed Yaseen, Jul 19 2022
MATHEMATICA
Do[t = Union[ Table[ PowerMod[2, i, 10^n], {i, 5^n}]]; Print[ Length[ Select[t, Floor[ Log[10, # ] + 1] == n &]]], {n, 10}] (* Robert G. Wilson v, Aug 27 2004 *)
PROG
(Python)
def a(n):
b, m, t = 5**n+1, 10**n, 10**(n-1)
return len(set(p for p in (pow(2, k, m) for k in range(b)) if p >= t))
print([a(n) for n in range(1, 10)]) # Michael S. Branicky, Jul 25 2022
CROSSREFS
Sequence in context: A185652 A009305 A097574 * A174082 A188329 A165962
KEYWORD
nonn,base,more
AUTHOR
EXTENSIONS
a(11)-a(12) from Michael S. Branicky, Jul 25 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 23 07:16 EDT 2024. Contains 371905 sequences. (Running on oeis4.)