login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A034709 Numbers divisible by their last digit. 22
1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 15, 21, 22, 24, 25, 31, 32, 33, 35, 36, 41, 42, 44, 45, 48, 51, 52, 55, 61, 62, 63, 64, 65, 66, 71, 72, 75, 77, 81, 82, 84, 85, 88, 91, 92, 93, 95, 96, 99, 101, 102, 104, 105, 111, 112, 115, 121, 122, 123, 124, 125, 126, 128, 131, 132 (list; graph; refs; listen; history; internal format)
OFFSET

1,2

COMMENTS

Union of A017281, A017293, A139222, A139245, A017329, A139249, A139264, A139279 and A139280. - Reinhard Zumkeller (reinhard.zumkeller(AT)gmail.com), Jun 22 2008

LINKS

Reinhard Zumkeller, Table of n, a(n) for n = 1..10000

MATHEMATICA

dldQ[n_]:=Module[{idn=IntegerDigits[n], last1}, last1=Last[idn]; last1!= 0&&Divisible[n, last1]]; Select[Range[150], dldQ]  (* From Harvey P. Dale, Apr 25 2011 *)

PROG

(Haskell)

import Data.Char (digitToInt)

a034709 n = a034709_list !! (n-1)

a034709_list =

   filter (\i -> i `mod` 10 > 0 && i `mod` (i `mod` 10) == 0) [1..]

-- Reinhard Zumkeller, Jun 19 2011

CROSSREFS

Cf. A002706, A034838, A007602.

Sequence in context: A071249 A084433 A084434 * A178158 A034838 A063527

Adjacent sequences:  A034706 A034707 A034708 * A034710 A034711 A034712

KEYWORD

nonn,base,nice

AUTHOR

Erich Friedman (erich.friedman(AT)stetson.edu)

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 14 15:24 EST 2012. Contains 205626 sequences.