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.

A177834 Opmanis's sequence: a(n) is the smallest integer k such that k or one of its nonzero substrings (regarded as an integer) is divisible by every integer in the range 1 through n.

This page as a plain text file.
%I A177834 #24 Jan 13 2025 16:28:53
%S A177834 1,2,6,12,45,54,56,56,245,504,1440,1440,5044,5044,10456,10569,11704,
%T A177834 11704,11704,13608,13608,13608,26460,26460,198007,258064,264600,
%U A177834 264600,475440,475440,1754608,1754608,2258064,2258064,2646004,2646004,2992520
%N A177834 Opmanis's sequence: a(n) is the smallest integer k such that k or one of its nonzero substrings (regarded as an integer) is divisible by every integer in the range 1 through n.
%C A177834 Comment from _N. J. A. Sloane_, May 28 2010: (Start)
%C A177834 The factorizations of the initial terms are:
%C A177834 1, 2, 2*3, 2^2*3, 3^2*5, 2*3^3, 2^3*7, 2^3*7, 5*7^2, 2^3*3^2*7, 2^5*3^2*5, 2^5*3^2*5, 2^2*13*97, 2^2*13*97, 2^3*1307, 3*13*271, 2^3*7*11*19,
%C A177834 2^3*7*11*19, 2^3*7*11*19, 2^3*3^5*7, 2^3*3^5*7, 2^3*3^5*7, 2^2*3^3*5*7^2, 2^2*3^3*5*7^2, 23*8609, 2^4*127^2, 2^3*3^3*5^2*7^2, 2^3*3^3*5^2*7^2, 2^4*3*5*7*283,
%C A177834 2^4*3*5*7*283, 2^4*109663, 2^4*109663, 2^4*3^3*5227, 2^4*3^3*5227, 2^2*139*4759, 2^2*139*4759, 2^3*5*79*947, ...
%C A177834 The name "Opmanis's sequence" is due to _N. J. A. Sloane_, not the author. (End)
%H A177834 Robert Gerbicz, <a href="/A177834/b177834.txt">Table of n, a(n) for n = 1..102</a>
%e A177834 a(8)=56 because 56 is divisible by 1,2,4,7,8; 5 is divisible by 5; 6 is divisible by 3 and 6. Therefore the set {1,2,3,4,5,6,7,8} is covered by the divisors. 56 is the smallest number with this property.
%t A177834 k = 1; lst = {}; mx = 0; f[n_] := Block[{a, d, id = IntegerDigits@ n}, a = Complement[ Union[ FromDigits /@ Flatten[ Table[ Partition[ id, k, 1], {k, Length@ id}], 1]], {0}]; d = Union[ Flatten[ Divisors /@ a]]; Complement[ Range@ 100, d][[1]] - 1]; While[k < 3000000, a = f@k; If[a > mx, Print[{a, k}]; AppendTo[lst, k]; mx = a]; k++ ] (* _Zak Seidov_ & _Robert G. Wilson v_, May 30 2010 *)
%o A177834 (Python)
%o A177834 def substrings(n): # returns set of nonzero substrings of n
%o A177834     s = str(n)
%o A177834     ss = (s[i:j] for i in range(len(s)) for j in range(i+1, len(s)+1))
%o A177834     return set(int(sij) for sij in ss) - {0}
%o A177834 def a(n, startk=1):
%o A177834     k = startk
%o A177834     while True:
%o A177834         subsk = substrings(k)
%o A177834         if all(any(kij%m == 0 for kij in subsk) for m in range(1, n+1)):
%o A177834             return k
%o A177834         k += 1
%o A177834 def afind():
%o A177834     n, an = 1, 1
%o A177834     while True:
%o A177834         n, an = n+1, a(n, startk=an)
%o A177834         print(an, end=", ")
%o A177834 afind() # _Michael S. Branicky_, Jan 22 2022
%Y A177834 Cf. A003418 (a weak upper bound), A169819, A169858, A178544.
%K A177834 nonn,base,nice
%O A177834 1,2
%A A177834 _Martins Opmanis_, May 14 2010
%E A177834 Edited by _N. J. A. Sloane_, May 28 2010
%E A177834 a(1)-a(37) confirmed by _Zak Seidov_, May 28 2010