OFFSET
1,3
COMMENTS
The number of distinct cards in a deck that has each card twice to perform the n-card trick, where the assistant chooses the hidden card. This number corresponds to a particular strategy, where if there is a duplicate card, then the assistant puts one of those duplicates on the far left and hides the other. The assistant then arranges all the other cards in nondecreasing order. If there are no duplicates, the strategy is similar to the standard one.
LINKS
Aria Chen, Tyler Cummins, Rishi De Francesco, Jate Greene, Tanya Khovanova, Alexander Meng, Tanish Parida, Anirudh Pulugurtha, Anand Swaroop, and Samuel Tsui, Card Tricks and Information, arXiv:2405.21007 [math.HO], 2024. See p. 19.
Michael Kleber and Ravi Vakil, The best card trick, The Mathematical Intelligencer 24 (2002), 9-11.
FORMULA
E.g.f.: 1/(1 - x) - exp(x)*(1 - x + x^2). - Stefano Spezia, Jun 06 2024
MATHEMATICA
Table[(n! - n^2 + 2 n - 1), {n, 1, 25}]
PROG
(Python)
from math import factorial
def A372264(n): return factorial(n)-(n-1)**2 # Chai Wah Wu, May 02 2024
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Tanya Khovanova and the MIT PRIMES STEP junior group, Apr 24 2024
STATUS
approved