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!)
A087445 Numbers that are congruent to 1 or 5 mod 12. 6
1, 5, 13, 17, 25, 29, 37, 41, 49, 53, 61, 65, 73, 77, 85, 89, 97, 101, 109, 113, 121, 125, 133, 137, 145, 149, 157, 161, 169, 173, 181, 185, 193, 197, 205, 209, 217, 221, 229, 233, 241, 245, 253, 257, 265, 269, 277, 281, 289, 293, 301, 305, 313, 317, 325, 329 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
From Bob Selcoe, Jun 03 2015: (Start)
For k >= 1: all numbers congruent to A002450(k) mod 2^(2k+1) and A072197(k) mod 4^(k+1) not congruent to 0 mod 3. Equivalently, for k >= 3: all numbers congruent to A096773(k) mod 2^k not congruent to 0 mod 3.
Conjecture: at least one number in this sequence must appear in all Collatz sequences.
(End)
The sequence is composed of all numbers in congruence classes T(n,1) mod 2^(n+k) in A259663 (i.e., T"(1) in array T259663(n,k)) not congruent to 0 mod 3. Therefore the conjecture above is true (see A259663 for additional explanation). - Bob Selcoe, Jul 15 2017
Closure of {1} under the map (x,y)->2x+3y [Klarner-Rado, see Lagarias (2016), p. 755]. - N. J. A. Sloane, Oct 06 2016
The above conjecture is true: this is because even numbers and odd numbers divisible by 3 will lead to the set of odd numbers not divisible by 3. Odd numbers of the form 4k - 1 can also be ignored, as this consists of odd numbers that grow between themselves and the next odd term through Collatz iteration. No infinite sequence of growth between consecutive odd terms is possible, so all numbers of the form 4k - 1 will lead to an odd number that shrinks between itself and the next odd number. All numbers 4k - 1 will lead to a number in 4k - 3, the odd numbers that shrink between themselves and the following odd term. What we are left after that elimination is this sequence. - Aidan Simmons, Feb 25 2019
LINKS
Jeffrey C. Lagarias, Erdős, Klarner and the 3x+ 1 Problem, Amer. Math. Monthly, Vol. 123, No. 8 (2016), pp. 753-776.
FORMULA
G.f.: x*(1+4*x+7*x^2)/((1+x)*(1-x)^2).
E.g.f.: 6*(x-1)*exp(x) + 7 - exp(-x). - corrected by Robert Israel, Jun 10 2015
a(n) = 6*(n-1) - (-1)^n. - Rolf Pleisch, Aug 04 2009
a(n) = 12*n - a(n-1) - 18 (with a(1)=1). - Vincenzo Librandi, Aug 08 2010
a(n) = a(n-1) + a(n-2) - a(n-3), with a(0)=1, a(1)=5, a(2)=13. - Harvey P. Dale, Jun 13 2011
Sum_{n>=1} (-1)^(n+1)/a(n) = sqrt(3)*Pi/12 + log(2 + sqrt(3))/(2*sqrt(3)). - Amiram Eldar, Dec 28 2021
MAPLE
seq(6*(n-1)-(-1)^n, n=1..100); # Robert Israel, Jun 10 2015
MATHEMATICA
LinearRecurrence[{1, 1, -1}, {1, 5, 13}, 70] (* or *) Rest[CoefficientList[ Series[x (1+4x+7x^2)/((1+x)(1-x)^2), {x, 0, 70}], x]] (* Harvey P. Dale, Jun 13 2011 *)
PROG
(PARI) a(n)=(n-1)\2*12 + [5, 1][n%2+1] \\ Charles R Greathouse IV, Jun 03 2015
(Magma) [k:k in [1..330]| k mod 12 in [1, 5]]; // Marius A. Burtea, Feb 08 2020
CROSSREFS
Sequence in context: A037046 A126887 A339952 * A020882 A081804 A004613
KEYWORD
easy,nonn
AUTHOR
Paul Barry, Sep 04 2003
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 April 25 11:36 EDT 2024. Contains 371968 sequences. (Running on oeis4.)