This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A363411 #18 Mar 27 2025 04:38:11 %S A363411 1,1,-5,-32,112,2212,-5348,-292880,276976,64180144,60400144, %T A363411 -21123205376,-68151050240,9766562233792,57568265355328, %U A363411 -6044149831446272,-54001800190537472,4827069458763086080,59568915131392086784,-4835221290238425841664,-77896195282519949963264 %N A363411 a(n) = the real part of Product_{k = 0..n} 1 + k*sqrt(-3). %C A363411 Compare with A105750(n) = the real part of Product_{k = 0..n} 1 + k*sqrt(-1). %C A363411 Moll (2012) studied the prime divisors of the terms of A105750 and divided the primes into three classes. Numerical calculation suggests that a similar division also holds in this case. %C A363411 Type 1: primes that do not divide any element of the sequence {a(n)}. %C A363411 We conjecture that the set of type 1 primes begins {3, 11, 17, 23, 29, 41, 47, 53, 59, 83, 89, 101, ...}. %C A363411 Type 2: primes p such that the p-adic valuation v_p(a(n)) has asymptotically linear behavior. An example is given below. %C A363411 We conjecture that the set of type 2 primes consists of primes p == 1 (mod 6), i.e., rational primes that split in the field extension Q(sqrt(-3)) of Q, together with the prime p = 2. See A002476. %C A363411 Moll's conjecture 5.5 extends to this sequence and takes the form: %C A363411 (i) the 2-adic valuation v_2(a(n)) ~ n/2 as n -> oo. %C A363411 (ii) for prime p == 1 (mod 6), the p-adic valuation v_p(a(n)) ~ n/(p - 1) %C A363411 as n -> oo. %C A363411 Type 3: primes p such that the sequence of p-adic valuations {v_p(a(n)) : n >= 0} exhibits an oscillatory behavior (this phrase is not precisely defined). An example is given below. %C A363411 We conjecture that the set of type 3 primes begins {5, 71, 179, 191, 227, 257, 263, ...}. %C A363411 Taken together, the type 1 and type 3 primes appear to consist of all primes p == 5 (mod 6), that is, the rational primes that remain inert in the field extension Q(sqrt(-3)) of Q, together with the prime p = 3, which ramifies in Q(sqrt(-3)). See A007528. %H A363411 Victor H. Moll, <a href="http://www.tulane.edu/~vhm/papers_html/xn-final.pdf">An arithmetic conjecture on a sequence of arctangent sums</a>, 2012, see f_n. %F A363411 a(n) = Sum_{k = 0..floor((n+1)/2)} (-3)^k*Stirling1(n+1,n+1-2*k). %F A363411 a(n+1)/a(n) = 1 - (3*n + 3)*tan(Sum_{k = 1..n} arctan(sqrt(3)*k))/sqrt(3). %F A363411 P-recursive: (n - 1)*a(n) = (2*n - 1)*a(n-1) - n*(3*n^2 - 6*n + 4)*a(n-2) with %F A363411 a(0) = a(1) = 1. %F A363411 Conjecture: the 5-adic valuation v_5(a(n+2)) = A079998(n) (checked up to n = %F A363411 5000). %e A363411 Type 2 prime p = 7: the sequence of 7-adic valuations [v_7(a(n)) : n = 0..60] = [0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 4, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 6, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 7, 8, 9, 8, 8, 9, 8, 8, 9, 9, 9, 9, 9, 9, 10, 10]. %e A363411 Note that v_7(a(60)) = 10 = 60/(7 - 1) in agreement with the asymptotic behavior for type 2 primes conjectured above. %e A363411 Type 3 prime p = 5: the sequence of 5-adic valuations [v_5(a(n)) : n = 0..100] = [0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0], showing the oscillatory behavior for type 3 primes conjectured above. %p A363411 a := proc(n) option remember; if n = 0 then 1 elif n = 1 then 1 else ( %p A363411 (2*n - 1)*a(n-1) - n*(3*n^2 - 6*n + 4)*a(n-2) )/(n - 1) end if; end: %p A363411 seq(a(n), n = 0..20); %t A363411 Table[Re[Product[1 + k*Sqrt[-3], {k, 0, n}]], {n, 0, 20}] (* _Vaclav Kotesovec_, Mar 27 2025 *) %Y A363411 Cf. A105750, A363409 - A363416. %K A363411 sign,easy %O A363411 0,3 %A A363411 _Peter Bala_, Jun 01 2023