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!)
A329115 a(n) = floor(A026549(n)/5). 2
0, 0, 1, 2, 7, 14, 43, 86, 259, 518, 1555, 3110, 9331, 18662, 55987, 111974, 335923, 671846, 2015539, 4031078, 12093235, 24186470, 72559411, 145118822, 435356467, 870712934, 2612138803, 5224277606, 15672832819, 31345665638, 94036996915, 188073993830 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
LINKS
FORMULA
a(n+1) = 2*a(n) if n is odd, a(n+1) = 3*a(n)+1 if n is even.
a(n) = f(2^f(n/2) * 3^f((n-1)/2) / 5), where f = floor.
G.f.: (x^2 (1 + 2 x))/((-1 + x) (1 + x) (-1 + 6 x^2)).
a(n) = 7*a(n-2) - 6*a(n-4).
MATHEMATICA
s[1] = 1; s[n_] := If[IntegerQ[n/2], 2*s[n - 1], 3*s[n - 1]]
Table[s[n], {n, 1, 20}] (* A026532 *)
Table[Floor[s[n]/5], {n, 1, 50}] (* A329115 *)
CROSSREFS
Sequence in context: A336579 A176662 A018526 * A018542 A018577 A121118
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Nov 10 2019
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 March 28 16:58 EDT 2024. Contains 371254 sequences. (Running on oeis4.)