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.

A375432 Numbers k such that A375428(k) > A375430(k).

This page as a plain text file.
%I A375432 #7 Aug 16 2024 21:21:30
%S A375432 8,24,27,32,40,54,56,64,72,88,96,104,108,120,125,135,136,152,160,168,
%T A375432 184,189,192,200,216,224,232,243,248,250,256,264,270,280,288,296,297,
%U A375432 312,320,328,343,344,351,352,360,375,376,378,392,408,416,424,440,448,456
%N A375432 Numbers k such that A375428(k) > A375430(k).
%C A375432 First differs from A374590 at n = 31.
%C A375432 For numbers k that are not in this sequence A375428(k) = A375430(k).
%C A375432 Numbers k such that A051903(k)+1 is not of the form Fibonacci(m)-1, m >= 3.
%C A375432 The asymptotic density of this sequence is 1 - 1/zeta(2) - Sum_{k>=4} (1/zeta(Fibonacci(k)) - 1/zeta(Fibonacci(k)-1)) = 0.12330053981922224451... .
%H A375432 Amiram Eldar, <a href="/A375432/b375432.txt">Table of n, a(n) for n = 1..10000</a>
%e A375432 8 is a term since A375428(8) = 3 > 2 = A375430(8).
%t A375432 fibQ[n_] := n >= 2 && Or @@ IntegerQ /@ Sqrt[5*n^2 + {-4, 4}]; Select[Range[300], !fibQ[Max[FactorInteger[#][[;;, 2]]] + 1] &]
%o A375432 (PARI) isfib(n) = n >= 2 && (issquare(5*n^2-4) || issquare(5*n^2+4));
%o A375432 is(n) = n > 1 && !isfib(vecmax(factor(n)[,2]) + 1);
%Y A375432 Cf. A000045, A000071, A051903, A374590, A375428, A375430.
%K A375432 nonn,easy,base
%O A375432 1,1
%A A375432 _Amiram Eldar_, Aug 15 2024