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!)
A367613 Numbers with exactly one comma-child. 1
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 34, 35, 37, 38, 39, 40, 41, 42, 43, 44, 46, 47, 48, 49, 50, 51, 53, 55, 56, 57, 58, 59, 60, 61, 62, 64, 65, 66, 67, 68, 69, 70, 73, 74, 75, 76, 77, 78, 79, 80, 82, 83 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Complement of union of A367341 and A367346.
See A367338 for definition of comma-child.
LINKS
Eric Angelini, Michael S. Branicky, Giovanni Resta, N. J. A. Sloane, and David W. Wilson, The Comma Sequence: A Simple Sequence With Bizarre Properties, arXiv:2401.14346, Youtube
MATHEMATICA
fQ[n_]:=Module[{k=n+10*Last[IntegerDigits[n]]+Range[9]}, Length[Select[k, #-n==FromDigits[{Last[IntegerDigits[n]], First[IntegerDigits[#]]}]&]]]==1;
Select[Range[83], fQ[#]&] (* Ivan N. Ianakiev, Dec 16 2023 *)
PROG
(Python)
def ok(n):
m = n + 10*(n%10)
return len([m+y for y in range(1, 10) if int(str(m+y)[0]) == y]) == 1
print([k for k in range(1, 100) if ok(k)]) # Michael S. Branicky, Dec 28 2023
CROSSREFS
Cf. A121895, A367341 (numbers with no comma-children), A367346 (numbers with two comma-children).
Sequence in context: A285356 A127034 A348960 * A095392 A232528 A254075
KEYWORD
nonn,base
AUTHOR
N. J. A. Sloane, Dec 15 2023
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 August 6 17:40 EDT 2024. Contains 374981 sequences. (Running on oeis4.)