OFFSET
1,2
COMMENTS
a(n) is an odd number that appears in m* = log(a(n)*phi^2) for the fermion condensate mass in odd dimensional and large N Gross-Neveu model at imaginary chemical potential and finite temperature.
LINKS
Evangelos G. Filothodoros, Strongly coupled fermions in odd dimensions and the running cut-off Lambda_d, arXiv:2306.14652 [hep-th], 2023.
EXAMPLE
a(1) = 1;
a(2) = 2*a(1) + 1 = 2*1 + 1 = 3;
etc.
PROG
(PARI) b(n) = if (n<=2, 1, b(n-1) + b(n-2) + b(n\2)); \\ A298338
a(n) = if (n==1, 1, 2*a(n-1) + b(n-2)); \\ Michel Marcus, Jun 06 2023
CROSSREFS
KEYWORD
nonn
AUTHOR
Evangelos G. Filothodoros, Jun 06 2023
STATUS
approved