|
| |
|
|
A079832
|
|
Numbers n such that floor(reverse(n)/n) = 3.
|
|
1
| |
|
|
15, 16, 29, 104, 114, 124, 134, 135, 144, 145, 155, 165, 166, 175, 176, 185, 186, 195, 196, 207, 208, 217, 218, 227, 228, 237, 238, 239, 247, 248, 249, 258, 259, 268, 269, 278, 279, 288, 289, 299, 1004, 1013, 1023, 1033, 1043, 1053, 1063, 1073, 1083, 1093
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,1
|
|
|
EXAMPLE
| 15 is a member as floor(51/15) = 3.
|
|
|
PROG
| (ARIBAS) for n := 1 to 1100 do nst := ""; st := itoa(n); for i := 0 to length(st) - 1 do nst := concat(st[i], nst); end; a := atoi(nst); if a div n = 3 then write(n, ", ") end; end;
|
|
|
CROSSREFS
| Cf. A079831.
Sequence in context: A063530 A046417 A193566 * A037971 A022105 A041456
Adjacent sequences: A079829 A079830 A079831 * A079833 A079834 A079835
|
|
|
KEYWORD
| base,nonn
|
|
|
AUTHOR
| Amarnath Murthy (amarnath_murthy(AT)yahoo.com), Feb 11 2003
|
|
|
EXTENSIONS
| Edited and extended by Klaus Brockhaus (klaus-brockhaus(AT)t-online.de), Feb 12 2003
|
| |
|
|