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!)
A318972 The 7x+-1 function ("shortcut" definition): a(n) = (7n+1)/4 if n == +1 (mod 4), a(n) = (7n-1)/4 if n == -1 (mod 4), otherwise a(n) = n/2. 1

%I #12 Nov 09 2018 22:05:02

%S 0,2,1,5,2,9,3,12,4,16,5,19,6,23,7,26,8,30,9,33,10,37,11,40,12,44,13,

%T 47,14,51,15,54,16,58,17,61,18,65,19,68,20,72,21,75,22,79,23,82,24,86,

%U 25,89,26,93,27,96,28,100,29,103,30,107,31,110,32,114,33,117,34,121

%N The 7x+-1 function ("shortcut" definition): a(n) = (7n+1)/4 if n == +1 (mod 4), a(n) = (7n-1)/4 if n == -1 (mod 4), otherwise a(n) = n/2.

%C See A317640 for another definition of this problem.

%H D. Barina, <a href="https://arxiv.org/abs/1807.00908">7x+-1: Close Relative of Collatz Problem</a>, arXiv:1807.00908 [math.NT], 2018.

%H K. Matthews, <a href="http://www.numbertheory.org/php/barina.html">David Barina's 7x+1 conjecture</a>.

%F a(n) = a(a(2*n))

%F From _Chai Wah Wu_, Nov 09 2018: (Start)

%F a(n) = a(n-2) + a(n-4) - a(n-6) for n > 5.

%F G.f.: x*(2*x^4 + x^3 + 3*x^2 + x + 2)/(x^6 - x^4 - x^2 + 1). (End)

%e a(3) = 5 because 3 == -1 (mod 4), and thus (7*3 - 1)/4 results in 5.

%e a(5) = 9 because 5 == +1 (mod 4), and thus (7*5 + 1)/4 results in 9.

%o (C)

%o int a(int n) {

%o ....switch(n%4) {

%o ........case 1: return (7*n+1)/4;

%o ........case 3: return (7*n-1)/4;

%o ........default: return n/2;

%o ....}

%o }

%o (PARI) a(n) = my(m=n%4); if (m==1, (7*n+1)/4, if (m==3, (7*n-1)/4, n/2)); \\ _Michel Marcus_, Sep 06 2018

%o (Python)

%o from __future__ import division

%o def A318972(n):

%o return (7*n+1)//4 if n % 4 == 1 else (7*n-1)//4 if n % 4 == 3 else n//2 # _Chai Wah Wu_, Nov 09 2018

%Y Cf. A014682 (3x+1 equivalent), A317640.

%K nonn,easy

%O 0,2

%A _David Barina_, Sep 06 2018

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 April 19 18:05 EDT 2024. Contains 371798 sequences. (Running on oeis4.)