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.

A374458 Squares of exponentially odd numbers (A268335).

This page as a plain text file.
%I A374458 #7 Jul 10 2024 02:58:24
%S A374458 1,4,9,25,36,49,64,100,121,169,196,225,289,361,441,484,529,576,676,
%T A374458 729,841,900,961,1024,1089,1156,1225,1369,1444,1521,1600,1681,1764,
%U A374458 1849,2116,2209,2601,2809,2916,3025,3136,3249,3364,3481,3721,3844,4225,4356,4489
%N A374458 Squares of exponentially odd numbers (A268335).
%C A374458 Numbers whose exponents in their prime factorization are all congruent to 2 (mod 4).
%H A374458 Amiram Eldar, <a href="/A374458/b374458.txt">Table of n, a(n) for n = 1..10000</a>
%F A374458 a(n) = A000290(A268335(n)) = A268335(n)^2.
%F A374458 Sum_{n>=1} 1/a(n) = zeta(4) * Product_{p prime} (1 + 1/p^2 - 1/p^4) = 1.54211628314015874165... .
%F A374458 Sum_{n>=1} 1/a(n)^s = zeta(4*s) * Product_{p prime} (1 + 1/p^(2*s) - 1/p^(4*s)), for s > 1/2.
%t A374458 Select[Range[100], AllTrue[FactorInteger[#][[;;, 2]], OddQ] &]^2
%o A374458 (PARI) is(k) = issquare(k) && if(k == 1, 1, my(e = factor(k)[, 2]); for(i = 1, #e, if(e[i] % 4 != 2, return(0))); 1);
%Y A374458 Cf. A000290, A016825, A013662, A268335.
%Y A374458 Similar sequences: A030140, A062503, A085986, A153158, A374291.
%K A374458 nonn,easy
%O A374458 1,2
%A A374458 _Amiram Eldar_, Jul 09 2024