OFFSET
1,7
COMMENTS
This sequence provides more insight into the asymptotic behavior of log(A008336(n)). - Daniel Forgues, Sep 21 2011
LINKS
Nathaniel Johnston, Table of n, a(n) for n = 1..500
FORMULA
Sqrt((n-1)! / A008336(n)), n >= 1.
MAPLE
A008336 := proc(n) option remember; if(n=1)then 1: elif(procname(n-1) mod (n-1)=0)then procname(n-1)/(n-1): else procname(n-1)*(n-1): fi: end: A195504 := proc(n) option remember: if(n=1)then 1: elif(A008336(n)<A008336(n-1))then (n-1)*procname(n-1): else procname(n-1): fi: end: seq(A195504(n), n=1..40); # Nathaniel Johnston, Sep 29 2011
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Daniel Forgues, Sep 19 2011
STATUS
approved