OFFSET
1,1
COMMENTS
Notice that 26! = 2^23 * 3^10 * 5^6 * 7^3 * 11^2 * 13^2 * 17 * 19 * 23. There is no divisibility for 11^2 and n in {11m+7} \ {121m+117} and for 13^2 and n in {13m+11} \ {169m+63}. Therefore, this sequence is formed by the union ( {11m+7} \ {121m+117} ) U ( {13m+11} \ {169m+63}). - Max Alekseyev, Nov 10 2007
MAPLE
d:=proc(n) options operator, arrow: (product(n^j+j, j=1..26))/factorial(26) end proc: a:=proc(n) if type(d(n), integer) = false then n else end if end proc; seq(a(n), n=1..300); # Emeric Deutsch, Oct 24 2007
CROSSREFS
KEYWORD
nonn
AUTHOR
Alexander R. Povolotsky, Sep 25 2007
EXTENSIONS
Initial terms were calculated by Peter J. C. Moses; see comment in A129995
More terms from Emeric Deutsch, Oct 24 2007
More terms from Max Alekseyev, Feb 02 2015
STATUS
approved
