The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A258165 Odd non-Brazilian numbers > 1. 2

%I #42 May 09 2021 05:09:08

%S 3,5,9,11,17,19,23,25,29,37,41,47,49,53,59,61,67,71,79,83,89,97,101,

%T 103,107,109,113,131,137,139,149,151,163,167,169,173,179,181,191,193,

%U 197,199,223,227,229,233,239,251,257,263,269,271,277,281,283,289,293,311,313,317,331,337

%N Odd non-Brazilian numbers > 1.

%C Complement of A257521 in A144396 (odd numbers > 1).

%C The terms are only odd primes or squares of odd primes.

%C Most odd primes are present except those in A085104.

%C All terms which are not primes are squares of odd primes except 121 = 11^2.

%H Vincenzo Librandi, <a href="/A258165/b258165.txt">Table of n, a(n) for n = 1..1150</a>

%e 11 is present because there is no base b < 11 - 1 = 10 such that the representation of 11 in base b is a repdigit (all digits are equal). In fact, we have: 11 = 1011_2 = 102_3 = 23_4 = 21_5 = 15_6 = 14_7 = 13_8 = 12_9, and none of these representations are repdigits. - _Bernard Schott_, Jun 21 2017

%t fQ[n_] := Block[{b = 2}, While[b < n - 1 && Length@ Union@ IntegerDigits[n, b] > 1, b++]; b+1 == n]; Select[1 + 2 Range@ 170, fQ]

%o (PARI) forstep(n=3, 300, 2, c=1; for(b=2, n-2, d=digits(n, b); if(vecmin(d)==vecmax(d), c=0; break));if(c,print1(n,", "))) \\ _Derek Orr_, May 27 2015

%o (Python)

%o from sympy.ntheory.factor_ import digits

%o l=[]

%o for n in range(3, 301, 2):

%o c=1

%o for b in range(2, n - 1):

%o d=digits(n, b)[1:]

%o if max(d)==min(d):

%o c=0

%o break

%o if c: l.append(n)

%o print(l) # _Indranil Ghosh_, Jun 22 2017, after PARI program

%Y Cf. A085104, A125134, A190300, A220570, A220571, A220627, A242397, A253260, A253261, A257521.

%K nonn

%O 1,1

%A _Daniel Lignon_ and _Robert G. Wilson v_, May 22 2015

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 May 14 21:33 EDT 2024. Contains 372533 sequences. (Running on oeis4.)