OFFSET
3,1
COMMENTS
Problem posed by user "Anush" in Code Golf Stack Exchange, with a solution by Christian Sievers. See link.
LINKS
Code Golf Stack Exchange, Average number of strings with Levenshtein distance up to 3, Dec 27 - Dec 31, 2019.
Wikipedia, Levenshtein distance
PROG
(GAP) See Code Golf Stack Exchange Link.
(PARI) f(n)=(40+6*n-4*n^2)/2^n-83/2+331/12*n-6*n^2+2/3*n^3;
for(k=3, 30, print1(numerator(f(k)), ", "))
(Python)
from fractions import Fraction
def f(n): return Fraction(40+6*n-4*n**2, 2**n) - Fraction(83, 2) + Fraction(331*n, 12) - 6*n**2 + Fraction(2*n**3, 3)
def a(n): return f(n).numerator
print([a(n) for n in range(3, 30)]) # Michael S. Branicky, Aug 31 2021
CROSSREFS
KEYWORD
nonn,frac
AUTHOR
Hugo Pfoertner, Mar 05 2020
STATUS
approved