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

A192130
Numbers k such that k divided by the number constructed from a decimal point followed by the reversed digits of k is an integer, but not a power of ten.
1
21, 42, 51, 52, 54, 57, 63, 81, 84, 210, 231, 270, 297, 420, 462, 510, 520, 521, 522, 528, 540, 561, 570, 572, 573, 594, 610, 630, 693, 810, 840, 861, 891, 2100, 2121, 2178, 2300, 2310, 2331, 2530, 2541, 2700, 2727, 2751, 2961, 2970, 2997, 4032, 4200, 4242
OFFSET
1,1
COMMENTS
Quotients equal to a power of 10 are excluded to eliminate trivial cases, e.g., 777/.777 = 1000.
If k is in this sequence, so is 10*k. However, 10*k can be in this sequence even if k is not (e.g., 270 is in the sequence even though 27 is not). - Nathaniel Johnston, Jun 23 2011
LINKS
EXAMPLE
a(1) = 21 because 21/.12 = 175;
a(6) = 57 because 57/.75 = 76.
MAPLE
isA192130 := proc(n) local d, m: d:=convert(n, base, 10): m:=n/add(d[j]*10^(-j), j=1..nops(d)): return `if`(type(m, integer) and not type(simplify(log[10](m)), integer), n, NULL): end: seq(isA192130(n), n=1..4410); # Nathaniel Johnston, Jun 23 2011
MATHEMATICA
revRec[n_, b_:10] := FromDigits[Reverse[IntegerDigits[n, b]]]/b^Length[IntegerDigits[n, b]]; Select[Range[3000], IntegerQ[#/revRec[#]] && Not[IntegerQ[Log[10, #/revRec[#]]]] &] (* Alonso del Arte, Jun 23 2011 *)
CROSSREFS
Sequence in context: A120772 A260749 A040420 * A258188 A037978 A089059
KEYWORD
nonn,base
AUTHOR
Gil Broussard, Jun 23 2011
STATUS
approved