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.

A103670 Smallest m such that A102730(m) = n.

Original entry on oeis.org

0, 1, 2, 3, 4, 5, 8, 23, 117, 155, 1410, 3702, 29406, 104312, 680407
Offset: 1

Views

Author

Reinhard Zumkeller, Feb 12 2005

Keywords

Comments

Reinhard Zumkeller conjectures (at A102730) that this sequence is finite. I conjecture the contrary, that a(n) exists for every n. Further, I expect a(n) << n^n. - Charles R Greathouse IV, Aug 21 2011
a(14) > 41000, if it exists. - Amiram Eldar, Apr 03 2025
The number of times that 1! through 10! appear in a(11)! is: 17417, 8777, 4361, 1118, 265, 31, 5, 1, 1, 1. It suggests factorials are normal in base 2 except for their trailing zeros. On this assumption, a(16) is expected around 3-4 million, and a(17) around 20-30 million. - Martin Fuller, Apr 14 2025

Examples

			a(6) = 5: A102730(5) = #{0,1,2,3,4,5} = 6.
a(7) = 8: A102730(8) = #{0,1,2,3,4,7,8} = 7.
a(8) = 23: A102730(23) = #{0,1,2,3,4,5,6,23} = 8.
a(9) = 117: A102730(117) = #{0,1,2,3,4,5,6,7,117} = 9.
a(10) = 155: A102730(155) = #{0,1,2,3,4,5,6,7,8,155} = 10.
		

Crossrefs

Cf. A102730.

Programs

  • Mathematica
    A102730[n_] := Sum[Boole[StringContainsQ[IntegerString[n!, 2], IntegerString[k!, 2]]], {k, 0, n}];
    seq[len_] := Module[{s = Table[0, {len}], c = 0, m = 0, i}, While[c < len, i = A102730[m]; If[i <= len && s[[i]] == 0, c++; s[[i]] = m]; m++]; s]; seq[10] (* Amiram Eldar, Apr 03 2025 *)

Extensions

a(11)-a(12) from D. S. McNeil, Aug 21 2011
a(13) from Amiram Eldar, Apr 03 2025
a(14)-a(15) from Martin Fuller, Apr 14 2025