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.

A284062 Numbers whose smallest decimal digit is 1.

This page as a plain text file.
%I A284062 #22 Sep 08 2022 08:46:19
%S A284062 1,11,12,13,14,15,16,17,18,19,21,31,41,51,61,71,81,91,111,112,113,114,
%T A284062 115,116,117,118,119,121,122,123,124,125,126,127,128,129,131,132,133,
%U A284062 134,135,136,137,138,139,141,142,143,144,145,146,147,148,149,151,152
%N A284062 Numbers whose smallest decimal digit is 1.
%C A284062 Numbers k such that A054054(k) = 1.
%C A284062 Prime terms are in A106101.
%t A284062 Select[Range[300], Min[IntegerDigits[#]]==1 &] (* _Indranil Ghosh_, Mar 19 2017 *)
%o A284062 (Magma) [n: n in [1..100000] | Minimum(Setseq(Set(Sort(&cat[Intseq(n)])))) eq 1]
%o A284062 (PARI) for(n=1, 300, if(vecmin(digits(n))==1, print1(n,", "))) \\ _Indranil Ghosh_, Mar 19 2017
%o A284062 (Python)
%o A284062 from sympy.ntheory.factor_ import digits
%o A284062 print([n for n in range(1, 301) if min(digits(n)[1:])==1]) # _Indranil Ghosh_, Mar 19 2017
%Y A284062 Cf. Sequences of numbers whose smallest decimal digit is k (for k = 0..9): A011540 (k = 0), this sequence (k = 1), A284063 (k = 2), A284064 (k = 3), A284065 (k = 4), A284066 (k = 5), A284067 (k = 6), A284068 (k = 7), A284069 (k = 8), A002283 (k = 9).
%K A284062 nonn,base
%O A284062 1,2
%A A284062 _Jaroslav Krizek_, Mar 19 2017