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.

A296613 Smallest k such that either k >= n and k is a power of 2, or k >= 5n/3 and the prime divisors of k are precisely 2 and 5.

This page as a plain text file.
%I A296613 #12 Dec 19 2017 14:11:30
%S A296613 1,2,4,4,8,8,8,8,16,16,16,16,16,16,16,16,32,32,32,32,32,32,32,32,32,
%T A296613 32,32,32,32,32,32,32,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,
%U A296613 64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,128,128
%N A296613 Smallest k such that either k >= n and k is a power of 2, or k >= 5n/3 and the prime divisors of k are precisely 2 and 5.
%C A296613 First disagreement with A062383(n-1) is at n = 129.
%C A296613 For n > 2, a(n) is not squarefree. - _Iain Fox_, Dec 17 2017
%H A296613 Eric M. Schmidt, <a href="/A296613/b296613.txt">Table of n, a(n) for n = 1..10000</a>
%H A296613 Bernadette Faye, Florian Luca, Pieter Moree, <a href="https://arxiv.org/abs/1708.03563">On the discriminator of Lucas sequences</a>, arXiv:1708.03563 [math.NT], 2017, Theorem 1.
%o A296613 (PARI) a(n) = for(k=n, +oo, if(k == 2^valuation(k, 2) || (k >= 5*n/3 && factor(k)[, 1] == [2, 5]~), return(k))) \\ _Iain Fox_, Dec 17 2017
%Y A296613 Cf. A033846.
%K A296613 nonn
%O A296613 1,2
%A A296613 _Eric M. Schmidt_, Dec 16 2017