cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A274048 a(n) = A116640(A018900(n)) = A116623(A059893(A018900(n))).

Original entry on oeis.org

19, 23, 29, 31, 37, 49, 47, 53, 65, 89, 79, 85, 97, 121, 169, 143, 149, 161, 185, 233, 329, 271, 277, 289, 313, 361, 457, 649, 527, 533, 545, 569, 617, 713, 905, 1289, 1039, 1045, 1057, 1081, 1129, 1225, 1417, 1801
Offset: 1

Views

Author

Joe Slater, Jun 07 2016

Keywords

Comments

A subset of A116640 containing all terms A116640(m) such that m has binary weight of 2. This sequence is related to the Collatz and Terras trajectories; specifically those trajectories that include three odd numbers besides 1.

Examples

			The first three terms of A018900 are 3,5,6. Taking these terms from A116640 gives 19,23,29, which are the first three terms of this sequence. The sequence is generated from the regular triangle
1;
1,2;
1,2,3;
etc., so the first three terms are
2^(1+1) + 3*(3+2^1) = 19;
2^(2+1) + 3*(3+2^1) = 23;
2^(2+1) + 3*(3+2^2)= 29.
		

Crossrefs

Subsequence of A116640.
Cf. A116623.

Formula

a(n) = 2^(Row(n)+1) + 3*(3+2^Col(n)) where Row(n) = A002024(n) = the row position of n when the sequence is viewed as a regular triangle; and Col(n) = A002260(n) = the column position of n when the sequence is viewed as a regular triangle.