iBet uBet web content aggregator. Adding the entire web to your favor.
iBet uBet web content aggregator. Adding the entire web to your favor.



Link to original content: http://oeis.org/A168005
A168005 - OEIS
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”).

A168005
Numbers n with property that first digit of 9*n = last digit of n.
1
21, 32, 43, 54, 65, 76, 87, 98, 109, 121, 131, 141, 151, 161, 171, 181, 191, 201, 211, 221, 232, 242, 252, 262, 272, 282, 292, 302, 312, 322, 332, 343, 353, 363, 373, 383, 393, 403, 413, 423, 433, 443, 454, 464, 474, 484, 494, 504, 514, 524, 534, 544, 554
OFFSET
1,1
LINKS
EXAMPLE
9*21=189, 9*32=288, 9*43=387, 9*54=486, etc.
MATHEMATICA
Reap[Do[If[IntegerDigits[n][[ -1]]==IntegerDigits[9*n][[1]], Sow[n]], {n, 1000}]][[2, 1]]
Select[Range[100], Last[IntegerDigits[#]] == First[IntegerDigits[9 #]] &] (* G. C. Greubel, Jul 03 2016 *)
KEYWORD
base,nonn
AUTHOR
Zak Seidov, Nov 16 2009
STATUS
approved