OFFSET
1,10
LINKS
Seiichi Manyama, Table of n, a(n) for n = 1..25
Matthew Christopher Russell, Using experimental mathematics to conjecture and prove theorems in the theory of partitions and commutative and non-commutative recurrences, PhD Dissertation, Mathematics Department, Rutgers University, May 2016.
MATHEMATICA
a[n_]:=If[n<10, 1, Sum[a[n - 2j + 1]*a[n - 2j], {j, 4}]/a[n - 9]]; Table[a[n], {n, 1, 20}] (* Indranil Ghosh, Mar 18 2017 *)
PROG
(PARI) a(n)= if(n<10, 1, sum(j=1, 4, a(n - 2*j + 1)*a(n - 2*j))/a(n - 9));
for(n=1, 20, print1(a(n), ", ")) \\ Indranil Ghosh, Mar 18 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Mar 17 2017
EXTENSIONS
More terms from Seiichi Manyama, Mar 17 2017
STATUS
approved