OFFSET
3,1
COMMENTS
Conjecture: The sequence contains only 1's and the primes.
Similar continued fraction to A356247.
a(n) = 1 positions appear to correspond to A104275(m), m > 2. Conjecture: all odd primes are seen in order after 11. - Bill McEachen, Aug 05 2024
LINKS
Mohammed Bouras, The Distribution Of Prime Numbers And The Continued Fractions, (2022).
FORMULA
PROG
(Python)
from math import gcd, factorial
def A356360(n): return (a:=(n<<1)-1)//gcd(a, a*sum(factorial(k) for k in range(n-2))+n*factorial(n-2)>>1) # Chai Wah Wu, Feb 26 2024
CROSSREFS
KEYWORD
nonn
AUTHOR
Mohammed Bouras, Oct 15 2022
STATUS
approved