VOOZH
about
URL: https://oeis.org/A050004
⇱ A050004 - OEIS
login
A050004
a(n) = floor(a(n-1)/2) if this is not among 0, a(1), ..., a(n-2); otherwise a(n) = 5*a(n-1).
7
1, 5, 2, 10, 50, 25, 12, 6, 3, 15, 7, 35, 17, 8, 4, 20, 100, 500, 250, 125, 62, 31, 155, 77, 38, 19, 9, 45, 22, 11, 55, 27, 13, 65, 32, 16, 80, 40, 200, 1000, 5000, 2500, 1250, 625, 312, 156, 78, 39, 195, 97, 48, 24, 120, 60, 30, 150
(
list
;
graph
;
refs
;
listen
;
history
;
text
;
internal format
)
OFFSET
1,2
LINKS
Ivan Neretin,
Table of n, a(n) for n = 1..10000
MATHEMATICA
Rest@Nest[Append[#, If[FreeQ[#, r = Quotient[#[[-1]], 2]], r, 5 #[[-1]]]] &, {0, 1}, 55] (*
Ivan Neretin
, Jul 31 2016 *)
CROSSREFS
Cf.
A050000
and references therein.
Sequence in context:
A065292
A090812
A319408
*
A111187
A257323
A293559
Adjacent sequences:
A050001
A050002
A050003
*
A050005
A050006
A050007
KEYWORD
nonn
,
easy
AUTHOR
Clark Kimberling
STATUS
approved