OFFSET
1,2
LINKS
G. C. Greubel, Table of n, a(n) for n = 1..925
Volkan Yildiz, Notes on algebraic structure of truth tables of bracketed formulae connected by implications, arXiv:2106.04728 [math.CO], 2021.
FORMULA
G.f.: (4-sqrt(1-12*x)-sqrt(5+24*x+4*sqrt(1-12*x)))/6.
MATHEMATICA
CoefficientList[Series[(4 -Sqrt[1-12*x] -Sqrt[5 +24*x +4*Sqrt[1-12*x]])/6, {x, 0, 40}], x]//Rest (* G. C. Greubel, May 20 2022 *)
PROG
(PARI) my(x='x+O('x^30)); Vec((4-sqrt(1-12*x)-sqrt(5+24*x+4*sqrt(1-12*x)))/6)
(SageMath)
def A345190_list(prec):
P.<x> = PowerSeriesRing(ZZ, prec)
return P( (4-sqrt(1-12*x)-sqrt(5+24*x+4*sqrt(1-12*x)))/6 ).list()
a=A345190_list(40); a[1:] # G. C. Greubel, May 20 2022
CROSSREFS
KEYWORD
nonn
AUTHOR
Michel Marcus, Jun 10 2021
STATUS
approved