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!)
A241177 Numbers n such that there are exactly two numbers m with m + (some digit of m) = n. 12
10, 12, 24, 32, 36, 48, 54, 60, 72, 76, 84, 96, 98, 109, 112, 123, 125, 127, 129, 131, 132, 133, 135, 137, 139, 141, 145, 147, 149, 151, 153, 155, 157, 159, 161, 163, 167, 169, 171, 172, 173, 175, 177, 179, 181, 183, 185, 189, 191, 193, 195, 197, 199, 201, 209, 211, 213, 215, 217, 219, 224, 233, 235, 237, 239, 241, 245 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The numbers 12, 112, 1112, ..., 111...112, ... are terms of the sequence. - Marius A. Burtea, Feb 18 2020
REFERENCES
Eric Angelini, Posting to Sequence Fans Mailing List, Apr 20 2014.
LINKS
David A. Corneth, Table of n, a(n) for n = 1..13111 (Terms <= 10^6)
EXAMPLE
12 = 6 + 6 = 11 + 1.
32 = 26 + 6 = 31 + 1.
112 = 106 + 6 = 111 + 1.
MAPLE
M:=2000;
M2:=M+10;
A:=Array[0..M2];
for n from 0 to M2 do A[n]:=0; od:
for n from 0 to M do
t1:=convert(n, base, 10);
t2:=convert(t1, set); t3:=convert(t2, list);
for i from 1 to nops(t3) do A[n+t3[i]]:= A[n+t3[i]]+1; od:
od:
ans:=[];
for n from 0 to M do if A[n]=2 then ans:=[op(ans), n]; fi; od:
[seq(ans[i], i=1..nops(ans))];
MATHEMATICA
A241177[n_] := Module[{m, c = 0},
Do[c = c + Count[m + Union[IntegerDigits[m]], n], {m, 0, n}]; c];
Select[Range[0, 245], A241177[#] == 2 &] (* Robert Price, Mar 20 2019 *)
PROG
(PARI) upto(n) = {my(v = vector(n + 9)); for(i = 1, n, d = Set(digits(i)); for(j = 1, #d, v[i + d[j]]++ ) ); for(i = n + 1, n + 9, v[i] = 0); select(x -> x == 2, v, 1) } \\ David A. Corneth, Mar 20 2019
(Magma) f:=func<n, m|exists(c){a:a in Intseq(m)|m+a eq n }>; [k:k in [1..250]| #[m:m in [1..k]| f(k, m)] eq 2]; // Marius A. Burtea, Feb 18 2020
CROSSREFS
Sequence in context: A084953 A235686 A087697 * A140972 A108901 A372488
KEYWORD
nonn,base
AUTHOR
N. J. A. Sloane, Apr 23 2014
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 September 1 00:14 EDT 2024. Contains 375575 sequences. (Running on oeis4.)