cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-6 of 6 results.

A362096 Numbers k such that 3^k starts with k.

Original entry on oeis.org

185, 225, 286, 182822, 8547303, 102886695, 472597369, 7627072026
Offset: 1

Views

Author

N. J. A. Sloane, Apr 10 2023, based on an email from Keith F. Lynch

Keywords

Crossrefs

For k such that b^k starts with n, for b = 2,..., 9, see A100129, A362096, A320930, A362097-A362101.

A362097 Numbers k such that 5^k starts with k.

Original entry on oeis.org

2, 7, 19, 67, 602, 1189, 3028, 48076, 5778508, 7409478, 269801494
Offset: 1

Views

Author

N. J. A. Sloane, Apr 10 2023, based on an email from Keith F. Lynch

Keywords

Crossrefs

For k such that b^k starts with n, for b = 2,..., 9, see A100129, A362096, A320930, A362097-A362101.

A362098 Numbers k such that 6^k starts with k.

Original entry on oeis.org

13, 21, 197, 1991, 1022859, 1346570, 1351632, 15919007, 22440783, 415638567, 9345895862
Offset: 1

Views

Author

N. J. A. Sloane, Apr 10 2023, based on an email from Keith F. Lynch

Keywords

Crossrefs

For k such that b^k starts with n, for b = 2,..., 9, see A100129, A362096, A320930, A362097-A362101.

A362099 Numbers k such that 7^k starts with k.

Original entry on oeis.org

3, 5560, 14350, 76972, 239123, 2067170, 19320438, 748459491, 1273027965, 6925699528, 7758433284, 8408679517
Offset: 1

Views

Author

N. J. A. Sloane, Apr 10 2023, based on an email from Keith F. Lynch

Keywords

Crossrefs

For k such that b^k starts with n, for b = 2,..., 9, see A100129, A362096, A320930, A362097-A362101.

A362100 Numbers k such that 8^k starts with k.

Original entry on oeis.org

4, 10, 18, 652, 1299, 8225, 12949, 56230, 156277, 3227298, 144225157
Offset: 1

Views

Author

N. J. A. Sloane, Apr 10 2023, based on an email from Keith F. Lynch

Keywords

Crossrefs

For k such that b^k starts with n, for b = 2,..., 9, see A100129, A362096, A320930, A362097-A362101.

Programs

  • Maple
    filter:= proc(n) local d1, d2, t;
      t:= 8^n;
      d1:= ilog10(t);
      d2:= ilog10(n);
      floor(t/10^(d1-d2)) = n
    end proc:
    select(filter, [$1..10^5]); # Robert Israel, Apr 10 2023
  • Python
    from itertools import count, islice
    def A362100_gen(startvalue=1): # generator of terms >= startvalue
        a = 1<<3*(m:=max(startvalue,1))
        for n in count(m):
            if (s:=str(n))==str(a)[:len(s)]:
                yield n
            a <<= 3
    A362100_list = list(islice(A362100_gen(),5)) # Chai Wah Wu, Apr 10 2023

A362175 Least number k > 1 not a power of 10 such that k^n, n > 2, starts with k, or -1 if no such number exists.

Original entry on oeis.org

32, 46416, 18, 4, 6813, 2, 75, 6, 2, 152, 6813, 12, 44, 4, 65, 2, 6, 3, 2, 3, 39, 5, 75, 4, 538, 2, 72, 53, 2, 69, 7, 5, 7627, 4, 6, 2, 12, 13434, 2, 8, 3, 5, 13, 4, 33246, 2, 14, 11, 2, 18, 538, 5, 6, 152, 75, 2, 7, 21, 2, 3, 552, 3, 75, 3, 39, 2, 3057, 38, 2, 7, 6, 5
Offset: 3

Views

Author

Jean-Marc Rebert, Apr 11 2023

Keywords

Examples

			a(3) = 32, because 32^3 = 32768 begins with 32, and no lesser number k > 2 and not a power of 10 has this property.
		

Crossrefs

Programs

  • PARI
    a(n) = my(k=2); while(!((v = strsplit(Str(k^n), Str(k))) && (#v >= 2) && (v[1] == "")), k++; if (sumdigits(k)==1, k++)); k; \\ Michel Marcus, Apr 11 2023
    
  • Python
    from itertools import count
    def a(n): return next(k for k in count(2) if (s:=str(k)).strip("0")!="1" and str(k**n).startswith(s))
    print([a(n) for n in range(3, 75)]) # Michael S. Branicky, Apr 11 2023
Showing 1-6 of 6 results.