OFFSET
1,1
COMMENTS
A105390(a(n)) = a(n)/2.
There are no other terms <= 600000. The plots in a105390.gif strongly suggest that the sequence is complete. - Klaus Brockhaus, Aug 15 2007
LINKS
EXAMPLE
A105390(n) < n/2 for n < a(1)=740;
A105390(n) > n/2 for n with 740 < n < a(2)=1260;
A105390(n) < n/2 for n with 1262 < n < a(4)=5230;
A105390(n) > n/2 for n with 5230 < n < a(5)=15804;
A105390(n) < n/2 for n with 15804 < n < a(6)=15814;
A105390(n) < n/2 for n with 15816 < n < a(8)=36294;
A105390(n) > n/2 for n with 36294 < n < a(9)=194876; etc.
PROG
(JBASIC)
s$ = "" : c = 0 : d = 0
FOR n = 1 TO 40000
sn$ = str$(n)
IF instr(s$, sn$) > 0 THEN d = d+1 ELSE c = c+1 : s$ = s$ + sn$
IF c = d THEN print n ; ", " ;
NEXT ' Klaus Brockhaus, Aug 15 2007
CROSSREFS
KEYWORD
nonn,base,more
AUTHOR
Reinhard Zumkeller, Apr 04 2005
STATUS
approved