cp's OEIS Frontend

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.

A285323 a(n) = A065642(A065642(A019565(n))) / A019565(n).

This page as a plain text file.
%I A285323 #20 May 09 2021 09:51:25
%S A285323 1,4,9,3,25,4,5,3,49,4,7,3,7,4,5,3,121,4,9,3,11,4,5,3,11,4,7,3,7,4,5,
%T A285323 3,169,4,9,3,13,4,5,3,13,4,7,3,7,4,5,3,13,4,9,3,11,4,5,3,11,4,7,3,7,4,
%U A285323 5,3,289,4,9,3,17,4,5,3,17,4,7,3,7,4,5,3,17,4,9,3,11,4,5,3,11,4,7,3,7,4,5,3,17,4,9,3,13,4,5,3,13,4,7,3,7,4,5,3
%N A285323 a(n) = A065642(A065642(A019565(n))) / A019565(n).
%C A285323 After the initial a(0)=1, the third row of array A285321 divided by its first row. After 1, all terms are either primes or squares of primes. See A285110.
%C A285323 The sequence is completely determined by the positions of two least significant 1-bits of n: After initial zero, if n is a power of two (only one 1-bit present) or if prime(1+A285099(n)) > prime(1+A007814(n))^2, a(n) = prime(1+A007814(n))^2 = A020639(A019565(n))^2, otherwise a(n) = prime(1+A285099(n)) = A014673(A019565(n)).
%H A285323 Antti Karttunen, <a href="/A285323/b285323.txt">Table of n, a(n) for n = 0..10000</a>
%F A285323 a(n) = A065642(A065642(A019565(n))) / A019565(n).
%o A285323 (PARI)
%o A285323 A019565(n) = {my(j,v); factorback(Mat(vector(if(n, #n=vecextract(binary(n), "-1..1")), j, [prime(j), n[j]])~))}; \\ This function from _M. F. Hasler_
%o A285323 A007947(n) = factorback(factorint(n)[, 1]); \\ From _Andrew Lelechenko_, May 09 2014
%o A285323 A065642(n) = { my(r=A007947(n)); if(1==n,n,n = n+r; while(A007947(n) <> r, n = n+r); n); };
%o A285323 A285323(n) = A065642(A065642(A019565(n))) / A019565(n);
%o A285323 (Scheme)
%o A285323 (define (A285323 n) (/ (A065642 (A065642 (A019565 n))) (A019565 n)))
%o A285323 (define (A285323 n) (cond ((zero? n) 1) ((or (= 1 (A000120 n)) (> (A000040 (+ 1 (A285099 n))) (A000290 (A000040 (+ 1 (A007814 n)))))) (A000290 (A000040 (+ 1 (A007814 n))))) (else  (A000040 (+ 1 (A285099 n))))))
%o A285323 (Python)
%o A285323 from operator import mul
%o A285323 from sympy import prime, primefactors
%o A285323 from functools import reduce
%o A285323 def a019565(n): return reduce(mul, (prime(i+1) for i, v in enumerate(bin(n)[:1:-1]) if v == '1')) if n > 0 else 1 # This function from _Chai Wah Wu_
%o A285323 def a007947(n): return 1 if n<2 else reduce(mul, primefactors(n))
%o A285323 def a065642(n):
%o A285323     if n==1: return 1
%o A285323     r=a007947(n)
%o A285323     n += r
%o A285323     while a007947(n)!=r:
%o A285323         n+=r
%o A285323     return n
%o A285323 def a(n): return a065642(a065642(a019565(n)))//a019565(n)
%o A285323 print([a(n) for n in range(101)]) # _Indranil Ghosh_, Apr 20 2017
%Y A285323 Cf. A000040, A007814, A014673, A020639, A019565, A065642, A285099, A285110, A285321, A285327.
%K A285323 nonn
%O A285323 0,2
%A A285323 _Antti Karttunen_, Apr 19 2017