login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A263808 Numbers k such that the iterated subtraction of the decimal digits eventually reaches -k. 2
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 18, 20, 21, 22, 24, 27, 30, 33, 36, 40, 42, 44, 45, 48, 50, 51, 54, 55, 60, 63, 66, 70, 72, 77, 80, 81, 84, 88, 89, 90, 98, 99, 100, 101, 102, 105, 108, 110, 111, 112, 113, 114, 116, 117, 120, 123, 124, 126, 128 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
A180477 is a subsequence of this sequence. - Hans Havermann, Oct 27 2015
LINKS
Éric Angelini, Essicran Numbers, SeqFan list, Oct 27 2015.
EXAMPLE
a(14)=18: 18-1-8-1-8-1-8-1-8 = -18. - Bob Selcoe, Oct 27 2015
MATHEMATICA
eQ[n_] := Block[{d = IntegerDigits@ n}, MemberQ[Accumulate@ d ~Prepend~ 0, Mod[2*n, Total@ d]]]; Select[Range@ 128, eQ] (* Giovanni Resta, Oct 27 2015 *)
PROG
(Haskell)
a263808 n = a263808_list !! (n-1)
a263808_list = filter essicran [1..] where
essicran x = last (takeWhile (>= -x) es) == -x where
es = scanl (-) x (cycle $ map (read . return) $ show x)
(PARI) is(n)=my(d=digits(n), t, S=vector(#d-1, i, t+=d[i])); t=2*n%vecsum(d); t==0 || setsearch(S, d) \\ Charles R Greathouse IV, Oct 28 2015
CROSSREFS
Sequence in context: A050607 A238368 A342164 * A180477 A271239 A083970
KEYWORD
nonn,base
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified March 28 16:58 EDT 2024. Contains 371254 sequences. (Running on oeis4.)