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 A298974 #5 Feb 23 2018 09:46:12 %S A298974 1,4,6,7,2,12,17,20,21,14,3,8,5,9,16,15,23,18,13,11,22,19,24,10,34,26, %T A298974 29,36,39,32,27,35,40,31,37,38,28,30,47,42,44,33,43,48,50,49,46,51,54, %U A298974 41,45,52,57,25,56,58,53,65,62,55,59,60,64,61,63,66,67,68,69,70,71,74,73,75,72,76,79,82,77,84,81,80,78,83,88,85,97,86,87 %N A298974 Lexicographic first sequence of positive integers such that a(n)*a(n+1) has a digit 4, and no term occurs twice. %C A298974 A permutation of the positive integers. %e A298974 a(1) = 1 is the least positive integer, and a(1) has no other constraint to satisfy. %e A298974 a(2) = 4 is the least positive integer > a(1) = 1 such that a(2)*a(1) = 4 has a digit 4. %e A298974 a(3) = 6 is the least positive integer not in {1, 4} such that a(3)*a(2) (= 24) has a digit 4: The smaller choices 2, 3 and 5 do not satisfy this. %e A298974 a(4) = 7 is the least positive integer not in {1, 4, 6} such that a(4)*a(3) (= 42) has a digit 4: All available smaller choices do not satisfy this. %o A298974 (PARI) A298974(n,f=1,d=4,a=1,u=[a])={for(n=2,n,f&&if(f==1,print1(a","),write(f,n-1," "a));for(k=u[1]+1,oo,setsearch(u,k)&&next;setsearch(Set(digits(a*k)),d)&&(a=k)&&break);u=setunion(u,[a]);while(#u>1&&u[2]==u[1]+1,u=u[^1]));a} %Y A298974 Cf. A299402, A299403, A298975, ..., A298979: analog with digit 2, 3; ..., 9. %Y A298974 Cf. A299957, A299969, ..., A299988 (analog with addition instead of multiplication, and different digits). %K A298974 nonn,base %O A298974 1,2 %A A298974 _M. F. Hasler_, Feb 22 2018