login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 60th year, we have over 367,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Other ways to Give
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A214614 Irregular triangle read by rows: row n gives numbers <= n whose Collatz trajectory contains the trajectory of n. 2
1, 1, 2, 1, 2, 3, 1, 2, 4, 1, 2, 4, 5, 1, 2, 3, 4, 5, 6, 1, 2, 4, 5, 7, 1, 2, 4, 8, 1, 2, 4, 5, 7, 8, 9, 1, 2, 4, 5, 8, 10, 1, 2, 4, 5, 8, 10, 11, 1, 2, 3, 4, 5, 6, 8, 10, 12, 1, 2, 4, 5, 8, 10, 13, 1, 2, 4, 5, 7, 8, 10, 11, 13, 14, 1, 2, 4, 5, 8, 10, 15 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Each row has A159999(n) elements and ends in n.
LINKS
EXAMPLE
Rows of triangle:
{1},
{1, 2},
{1, 2, 3},
{1, 2, 4},
{1, 2, 4, 5},
{1, 2, 3, 4, 5, 6},
{1, 2, 4, 5, 7},
{1, 2, 4, 8},
{1, 2, 4, 5, 7, 8, 9},
{1, 2, 4, 5, 8, 10}
MATHEMATICA
Collatz[n_] := NestWhileList[If[EvenQ[#], #/2, 3 # + 1] &, n, # > 1 &]; f[n_] := Module[{c = Collatz[n]}, Select[c, # <= n &]]; t = Table[f[n], {n, 20}]; Flatten[t] (* T. D. Noe, Mar 07 2013 *)
PROG
(Haskell)
import Data.List (sort)
a214614 n k = a214614_tabf !! (n-1) (k-1)
a214614_row n = a214614_tabf !! (n-1)
a214614_tabf = zipWith f [1..] a070165_tabf where
f v ws = sort $ filter (<= v) ws
-- Reinhard Zumkeller, Sep 01 2014
CROSSREFS
Sequence in context: A264846 A265691 A334430 * A265692 A194976 A195082
KEYWORD
nonn,tabf
AUTHOR
Jayanta Basu, Mar 06 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 December 7 01:49 EST 2023. Contains 367616 sequences. (Running on oeis4.)