The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A222293 Conjectured total number of times that k+n appears in the Collatz (3x+1) sequence of k for k = 1, 2, 3,... 2
37, 30, 34, 30, 31, 29, 28, 38, 42, 32, 40, 40, 49, 30, 40, 40, 54, 45, 46, 40, 49, 44, 41, 48, 47, 54, 48, 41, 50, 44, 54, 45, 49, 60, 53, 47, 54, 50, 56, 44, 48, 50, 54, 47, 54, 38, 56, 47, 60, 48, 63, 48, 47, 45, 56, 53, 49, 49, 62, 52, 50, 54, 53, 52, 49, 46 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
a(1) = 37 because k+1 occurs in the Collatz sequence of k for the 37 values in A070993.
MATHEMATICA
Collatz[n_] := NestWhileList[If[EvenQ[#], #/2, 3 # + 1] &, n, # > 1 &]; nn = 75; t = Table[0, {nn}]; lastChange = 10; k = 0; While[k < 2*lastChange, k++; c = Collatz[k]; d = Intersection[Range[nn], c - k]; If[Length[d] > 0, lastChange = k; t[[d]]++]]
CROSSREFS
Cf. A070993, A221213 (k-n).
Sequence in context: A093860 A336480 A075400 * A350002 A242556 A087366
KEYWORD
nonn
AUTHOR
T. D. Noe, Feb 22 2013
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 May 13 02:41 EDT 2024. Contains 372497 sequences. (Running on oeis4.)