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.

A374460 Indices of the nonsquarefree terms in the sequence of exponentially odd numbers (A268335).

This page as a plain text file.
%I A374460 #8 Jul 10 2024 09:37:39
%S A374460 7,18,20,24,31,39,41,63,69,74,86,89,91,97,98,109,115,121,131,135,154,
%T A374460 161,167,174,177,179,189,194,200,211,212,223,234,243,244,249,250,265,
%U A374460 266,268,273,290,296,302,314,325,328,338,343,348,350,366,367,373,382,388,393
%N A374460 Indices of the nonsquarefree terms in the sequence of exponentially odd numbers (A268335).
%C A374460 The asymptotic density of this sequence is 1 - A059956 / A065463 = 0.13700925215474602945... .
%H A374460 Amiram Eldar, <a href="/A374460/b374460.txt">Table of n, a(n) for n = 1..10000</a>
%F A374460 A268335(a(n)) = A374459(n).
%e A374460 The first 7 exponentially odd numbers are 1, 2, 3, 5, 6, 7, and 8. A268335(7) = 8 = 3^3 is the least nonsquarefree term. Therefore a(1) = 7.
%t A374460 Position[Select[Range[120], AllTrue[FactorInteger[#][[;; , 2]], OddQ] &], _?(!SquareFreeQ[#] &), Heads -> False] // Flatten
%o A374460 (PARI) isexpodd(k) = {my(e = factor(k)[, 2]); for(i = 1, #e, if(!(e[i] % 2), return(0))); 1;}
%o A374460 lista(kmax) = {my(f, c = 0); for(k = 1, kmax, if(isexpodd(k), c++; if(!issquarefree(k), print1(c, ", "))));}
%Y A374460 Cf. A005117, A059956, A065463, A268335.
%Y A374460 Similar sequences: A361936, A363189, A371186, A371188.
%K A374460 nonn,easy
%O A374460 1,1
%A A374460 _Amiram Eldar_, Jul 09 2024