OFFSET
1,3
COMMENTS
The background of this sequence is an "execute-summon" problem in Minecraft command system ver. 1.13+. In Minecraft v1.13+, if you just summon an entity using the "summon" command, you get one more. However, when you combine the "summon" command with nested "execute" commands that target all entities, you will get x^j more entities, where x is the number of entities before the command and j is the number of times the command is nested. To obtain a given number of entities, we are interested in the minimal number of iterations using such commands. The minimal number of iterations to get n is the n-th term of this sequence. [Clarified by Peter Kagey, Aug 24 2019]
From Peter Kagey and Chris Quisling, Aug 22 2019: (Start)
In Minecraft there are several commands, such as /summon, which summons a creature, and /execute which can be combined with other commands to behave like a for-loop.
For example, running "/summon minecraft:cat" places a cat into the game, and running "/execute at @e run summon minecraft:cat" places one cat into the game for every creature in the game.
If there are x creatures in the game, nesting the "execute" command k times has the effect of creating x^k new creatures, resulting in a total of x + x^k creatures.
For example, running "/execute at @e run execute at @e run summon minecraft:cat" places x^2 new creatures into the game.
(End)
a(n) <= 2*A000523(n), as we can always get from floor(n/2) to n by applying the map(s) x -> x + x (and x -> x + 1 if n is odd). - Ely Golden, Aug 19 2020
LINKS
Peter Kagey, Table of n, a(n) for n = 1..10000
Minecraft Wiki, Execute command
EXAMPLE
For n = 43, a(43) = 4 because we can reach 43 by the four iterations below, but not in less iterations:
- 1 -> 2 by setting j=0, 1 + 1^0 = 2,
- 2 -> 6 by setting j=2, 2 + 2^2 = 6,
- 6 -> 42 by setting j=2, 6 + 6^2 = 42,
- 42 -> 43 by setting j=0, 42 + 42^0 = 43.
From Peter Kagey, Aug 22 2019: (Start)
So if there is exactly one creature in the game, running the following four commands will result in 43 creatures in the game:
/summon minecraft:cat
/execute at @e run execute at @e run summon minecraft:cat
/execute at @e run execute at @e run summon minecraft:cat
/summon minecraft:cat
Which have 0, 2, 2, and 0 nested "execute" commands respectively, and four is the fewest number of commands that can be run to create exactly 43 creatures in the game.
(End)
MATHEMATICA
(* To get more terms of the sequence, increase terms, maxa and maxx, and then set maxi=trunc(lb(maxx)) *)
maxi=16; maxx=65536; maxa=10; terms=100;
a = NestList[
Function[list,
DeleteDuplicates[
Join[list,
Flatten[Table[If[# + #^i <= maxx, # + #^i, 1], {i, 0, maxi}] & /@
list]]]], {1}, maxa];
b = Prepend[Table[Complement[a[[i + 1]], a[[i]]], {i, Length[a] - 1}],
First[a]];
c = SparseArray[
Flatten[b] ->
Flatten[Table[
ConstantArray[i, Length[b[[i]]]], {i, Length[b]}]]] // Normal;
Take[c, terms] - 1
CROSSREFS
KEYWORD
nonn
AUTHOR
Yancheng Lu, Mar 24 2019
STATUS
approved