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 A295878 #13 Nov 29 2017 19:25:49 %S A295878 1,2,2,1,2,4,2,3,1,4,2,2,2,4,4,1,2,2,2,2,4,4,2,6,1,4,3,2,2,8,2,5,4,4, %T A295878 4,1,2,4,4,6,2,8,2,2,2,4,2,2,1,2,4,2,2,6,4,6,4,4,2,4,2,4,2,1,4,8,2,2, %U A295878 4,8,2,3,2,4,2,2,4,8,2,2,1,4,2,4,4,4,4,6,2,4,4,2,4,4,4,10,2,2,2,1,2,8,2,6,8,4,2,3,2,8,4,2,2,8,4,2,2,4,4,12 %N A295878 Multiplicative with a(p^(2e)) = 1, a(p^(2e-1)) = prime(e). %C A295878 This sequence can be used as a filter. It matches at least to the following sequence, as for all i, j: %C A295878 a(i) = a(j) => A162642(i) = A162642(j), as A162642(n) = A001222(a(n)). %C A295878 a(i) = a(j) => A056169(i) = A056169(j), as A056169(n) = A007814(a(n)). %C A295878 a(i) = a(j) => A295883(i) = A295883(j), as A295883(n) = A007949(a(n)). %C A295878 a(i) = a(j) => A295662(i) = A295662(j). %C A295878 a(i) = a(j) => A295664(i) = A295664(j). %H A295878 Antti Karttunen, <a href="/A295878/b295878.txt">Table of n, a(n) for n = 1..65537</a> %H A295878 <a href="https://oeis.org/wiki/Index_to_OEIS:_Section_Eu#epf">Index entries for sequences computed from exponents in factorization of n</a> %F A295878 a(1) = 1; for n>1, if n = Product prime(i)^e(i), then a(n) = Product prime((e(i)+1)/2)^A000035(e(i)). %t A295878 Array[Apply[Times, FactorInteger[#] /. {p_, e_} /; p > 0 :> Which[p == 1, 1, EvenQ@ e, 1, True, Prime[(e + 1)/2]]] &, 120] (* _Michael De Vlieger_, Nov 29 2017 *) %o A295878 (Scheme, with memoization-macro definec) %o A295878 (definec (A295878 n) (if (= 1 n) 1 (let ((e (A067029 n))) (* (if (even? e) 1 (A000040 (/ (+ 1 e) 2))) (A295878 (A028234 n)))))) %Y A295878 Cf. A294873, A295879. %K A295878 nonn,mult %O A295878 1,2 %A A295878 _Antti Karttunen_, Nov 29 2017