A336144 Integers that are Colombian and not Brazilian.
1, 3, 5, 9, 53, 97, 233, 277, 367, 389, 457, 479, 547, 569, 613, 659, 727, 839, 883, 929, 1021, 1087, 1109, 1223, 1289, 1447, 1559, 1627, 1693, 1783, 1873, 2099, 2213, 2347, 2437, 2459, 2503, 2549, 2593, 2617, 2683, 2729, 2819, 2953, 3023, 3067, 3089, 3313, 3359
Offset: 1
Examples
233 is a term because 233 is not of the form m + (sum of digits of m) for any m < 233, so 233 is Colombian and there is no Brazilian representation for 233.
Links
- Giovanni Resta, Self or Colombian number, Numbers Aplenty.
- Wikipédia, Nombre brésilien (in French).
- Index to sequences related to Colombian Numbers.
- Index to sequences related to Brazilian Numbers.
Crossrefs
Programs
-
Mathematica
brazQ[n_] := Module[{b = 2, found = False}, While[b < n - 1 && Length[Union[IntegerDigits[n, b]]] > 1, b++]; b < n - 1]; n = 4000; Select[Complement[Range[n], Union @ Table[Plus @@ IntegerDigits[k] + k, {k, 1, n}]], !brazQ[#] &] (* Amiram Eldar, Jul 14 2020 *)
Comments