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!)
A280390 Integers that can be written using their individual decimal digits and the operations + - * / ^ but not the concatenation of their digits. 0
25, 125, 127, 128, 216, 289, 343, 347, 625, 736, 1285, 1296, 1792, 2048, 2187 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
A proper subset of A036057.
LINKS
EXAMPLE
125 is in the sequence since 5^(1+2) but 121 is not in the sequence. We do not accept 11^2 since 11 is the concatenation of two digits.
MATHEMATICA
ops = {Plus, Subtract, Times, Divide, Power}; fQ[n_] := Length@ Select[ Groupings[ Permutations@ IntegerDigits@ n, ops -> 2], # == n &] > 0; k = 1; lst = {}; While[k < 1001, If[fQ@k, AppendTo[lst, k]]; k++]; lst (* requires Mathematica version 11 or better *)
CROSSREFS
Cf. A036057.
Sequence in context: A360640 A172047 A304422 * A225388 A369563 A146945
KEYWORD
base,nonn
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 April 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)