[go: up one dir, main page]

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”).

A044288
Numbers n such that string 4,1 occurs in the base 9 representation of n but not of n-1.
0
37, 118, 199, 280, 333, 361, 442, 523, 604, 685, 766, 847, 928, 1009, 1062, 1090, 1171, 1252, 1333, 1414, 1495, 1576, 1657, 1738, 1791, 1819, 1900, 1981, 2062, 2143, 2224, 2305, 2386, 2467, 2520, 2548, 2629, 2710, 2791
OFFSET
1,1
MATHEMATICA
Select[Range[3000], MemberQ[Partition[IntegerDigits[#, 9], 2, 1], {4, 1}] && !MemberQ[Partition[IntegerDigits[#-1, 9], 2, 1], {4, 1}]&] (* Harvey P. Dale, Sep 21 2011 *)
CROSSREFS
Sequence in context: A304612 A138638 A193105 * A044669 A048510 A250891
KEYWORD
nonn,base
STATUS
approved