A299973 Lexicographic first sequence of positive integers such that a(n) + a(n+1) has a digit 3, and no term occurs twice.
1, 2, 11, 12, 18, 5, 8, 15, 16, 7, 6, 17, 13, 10, 3, 20, 14, 9, 4, 19, 24, 29, 34, 39, 44, 49, 54, 59, 64, 66, 27, 26, 37, 36, 47, 46, 57, 56, 67, 63, 30, 23, 40, 33, 50, 43, 60, 53, 70, 61, 22
Offset: 1
Crossrefs
Programs
-
PARI
a(n,f=1,d=3,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]);u[2]==u[1]+1&&u=u[^1]);a}
Comments