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!)
A287330 7*x - 1 Collatz-type sequence starting with a(0) = 11. 1
11, 76, 38, 19, 132, 66, 33, 230, 115, 804, 402, 201, 1406, 703, 4920, 2460, 1230, 615, 4304, 2152, 1076, 538, 269, 1882, 941, 6586, 3293, 23050, 11525, 80674, 40337, 282358, 141179, 988252, 494126, 247063, 1729440, 864720, 432360, 216180, 108090, 54045, 378314, 189157, 1324098 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
FORMULA
a(0) = 11; a(n) = 7*a(n - 1) - 1 if a(n - 1) is odd, a(n) = a(n - 1)/2 if a(n - 1) is even.
EXAMPLE
11 is odd, so it's followed by 7*11 - 1 = 76.
76 is even, so it's followed by 76/2 = 38.
MATHEMATICA
NestList[If[OddQ[#], 7# - 1, #/2] &, 11, 50]
CROSSREFS
Cf. A063871.
Sequence in context: A347987 A157232 A305661 * A282384 A092225 A282816
KEYWORD
nonn,easy
AUTHOR
Alonso del Arte, Sep 01 2017
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 November 29 06:00 EST 2023. Contains 367422 sequences. (Running on oeis4.)