A178414 Least odd number in the Collatz (3x+1) preimage of odd numbers not a multiple of 3.
1, 3, 9, 7, 17, 11, 25, 15, 33, 19, 41, 23, 49, 27, 57, 31, 65, 35, 73, 39, 81, 43, 89, 47, 97, 51, 105, 55, 113, 59, 121, 63, 129, 67, 137, 71, 145, 75, 153, 79, 161, 83, 169, 87, 177, 91, 185, 95, 193, 99, 201, 103, 209, 107, 217, 111, 225, 115, 233, 119, 241, 123, 249
Offset: 1
Links
- Matthew House, Table of n, a(n) for n = 1..10000
- Index entries for linear recurrences with constant coefficients, signature (0,2,0,-1).
Programs
-
Mathematica
Riffle[1+8*Range[0,50], 3+4*Range[0,50]]
Formula
a(n) = (n - 1)*(3 - (-1)^n) + 1. [Bogart B. Strauss, Sep 20 2013, adapted to the offset by Matthew House, Feb 14 2017]
From Matthew House, Feb 14 2017: (Start)
G.f.: x*(1 + 3*x + 7*x^2 + x^3)/((1 - x)^2*(1 + x)^2).
a(n) = 2*a(n-2) - a(n-4). (End)
From Philippe Deléham, Nov 06 2023: (Start)
a(2*n) = 4*n-1, a(2*n+1) = 8*n+1.
a(n) = 2*A022998(n-1)+1.
a(n) = 2*A114752(n)-1. (End)
Comments