The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A091783 Numbers with digits in nondecreasing order such that sum of the reciprocals of the digits is 1. 0
1, 22, 236, 244, 333, 2488, 2666, 3366, 3446, 4444, 26999, 28888, 33999, 34688, 36666, 44488, 44666, 55555, 366999, 368888, 446999, 448888, 466688, 666666, 3999999, 4688999, 4888888, 6666999, 6668888, 7777777, 66999999, 68888999, 88888888, 999999999 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
236 is a member but 263, 326, 362, 623, 632 which are digit permutations of 236 are not included (unlike A037268).
By definition, this is a subsequence of A052382 (zeroless numbers). - Michel Marcus, Jul 06 2015
LINKS
EXAMPLE
236 is a member as 1/2 + 1/3 + 1/6 = 1.
MAPLE
F:= proc(t, ns) option remember;
local n0, k, r;
if ns = [] then
if t = 0 then return {[]}
else return {}
fi;
fi;
n0:= ns[1];
`union`(seq(map(r -> [k, op(r)], procname(t - k/n0, ns[2..-1])), k=0..floor(t*n0)));
end proc:
g:= proc(t) local L, i; L:= [seq(i$t[i], i=1..9)]; add(L[i]*10^(nops(L)-i), i=1..nops(L)) end proc:
sort(convert(map(g, F(1, [$1..9])), list)); # Robert Israel, Jul 06 2015
PROG
(PARI) lista(nn) = {for (n=1, nn, d = digits(n); if (vecmin(d) && (vecsort(d)==d) && (sum(k=1, #d, 1/d[k])==1), print1(n, ", ")); ); } \\ Michel Marcus, Jul 06 2015
CROSSREFS
Sequence in context: A082205 A003205 A037268 * A213072 A159649 A046499
KEYWORD
base,fini,nonn,full
AUTHOR
Amarnath Murthy, Feb 17 2004
EXTENSIONS
More terms from Sam Handler (sam_5_5_5_0(AT)yahoo.com), Apr 17 2004
Incorrect term 39999 corrected to 33999 by Thomas Oléron Evans, Jul 06 2015
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 May 14 03:08 EDT 2024. Contains 372528 sequences. (Running on oeis4.)