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.

Showing 1-2 of 2 results.

A375472 Least k such that the ternary representation of 2^k has exactly 2*n 1's, or -1 if no such k exists.

Original entry on oeis.org

1, 2, 8, 14, 24, 26, 42, 45, 50, 53, 70, 74, 96, 76, 124, 98, 116, 121, 143, 141, 179, 150, 187, 181, 192, 215, 209, 233, 220, 257, 245, 264, 243, 278, 260, 310, 297, 303, 315, 339, 329, 387, 341, 357, 354, 366, 403, 420, 350, 400, 411, 415, 474, 455, 466, 442
Offset: 0

Views

Author

Pontus von Brömssen, Aug 17 2024

Keywords

Examples

			For n = 3, the smallest power of 2 with exactly 2*3 = 6 1's in its ternary representation is 2^14 = 211110211_3, so a(3) = 14.
		

Crossrefs

Programs

  • PARI
    a(n) = my(k=1); while (#select(x->(x==1), digits(2^k, 3)) != 2*n, k++); k; \\ Michel Marcus, Aug 17 2024

Formula

Conjecture: a(n) ~ 6*log_2(3)*n = 6*A020857*n.

A365215 Largest k such that the binary representation of 3^k has exactly n 1's, or -1 if no such k exists.

Original entry on oeis.org

0, 2, 4, 3, 7, 8, -1, 9, 10, 12, 16, -1, 11, 18, 15, 24, 20, 25, 22, 21, -1, 23
Offset: 1

Views

Author

Pontus von Brömssen, Aug 26 2023

Keywords

Comments

Largest k such that A011754(k) = n, or -1 if no such k exists.
Senge and Straus prove that a(n) is finite for all n.
The first 22 terms are from Dimitrov and Howe (2021). After a(22), the sequence conjecturally but very likely continues -1, 26, 30, 32, 36, 40, 34, 27, -1, 39, 49, 45, 53, 38, -1, 47, 56, 57, 50, 58, -1, -1, 66, 51, 67, 59, 62, -1, ... .

Crossrefs

Programs

  • Mathematica
    LargestK[n_Integer] := Module[{k = 1000(*Assuming 1000 is large enough for the search.  Adjust if necessary.*), binCount}, While[k >= 0, binCount = Total[IntegerDigits[3^k, 2]]; If[binCount == n, Return[k]]; k--;]; -1]; Table[LargestK[n], {n, 22}] (* Robert P. P. McKone, Aug 26 2023 *)
Showing 1-2 of 2 results.