login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A277622
Integers such that the first part "a", divided by the penultimate digit "b", leaves the last digit "c" as remainder (see the Example section for a detailed explanation).
1
110, 121, 131, 141, 151, 161, 171, 181, 191, 210, 220, 232, 242, 252, 262, 272, 282, 292, 310, 321, 330, 343, 353, 363, 373, 383, 393, 410, 420, 431, 440, 454, 464, 474, 484, 494, 510, 521, 532, 541, 550, 565, 575, 585, 595, 610, 620, 630, 642, 651, 660, 676, 686, 696, 710, 721, 731, 743, 752, 761, 770, 787, 797, 810
OFFSET
1,1
COMMENTS
There are 8991 terms < 100000.
LINKS
EXAMPLE
Consider the first term, 110: the part "a" is "1", the penultimate digit "b" of "110" is "1" and the last digit "c" of "110" is "0"; we see indeed that 1/1 leaves a remainder of 0.
Consider the second term, 121: we see indeed that 1/2 leaves a remainder of 1 -- but no term between 110 and 121 has the same property (117, for instance, doesn't fit because 1/1 has 0 as remainder -- and not 7 as it should have to be part of the sequence).
Similarly, the integer 1983 is part of the sequence because 19/8 leaves a remainder of 3.
MATHEMATICA
Select[Range[100, 1000], (u = Mod[#, 10]; d = Mod[(# - u)/10, 10]; d > 0 && u == Mod[Floor[#/100], d]) &] (* Giovanni Resta, Apr 11 2017 *)
CROSSREFS
Sequence in context: A320121 A084042 A110735 * A101317 A274945 A274944
KEYWORD
nonn,base,easy
AUTHOR
STATUS
approved