login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A277971 a(1) = 1; a(n) > a(n-1) is the smallest number whose name in English contains the first letter of the name of a(n-1). 7

%I #13 Dec 20 2021 05:28:46

%S 1,2,3,8,9,10,12,13,14,15,24,25,26,27,28,29,30,31,32,33,34,35,36,37,

%T 38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,64,

%U 65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,86,87,88,89,90,91

%N a(1) = 1; a(n) > a(n-1) is the smallest number whose name in English contains the first letter of the name of a(n-1).

%t name[n_]:=IntegerName[n,"Words"];a[1]=1;

%t a[n_]:=a[n]=Module[{i=a[n-1]+1},While[

%t !StringContainsQ[name[i],StringTake[name[a[n-1]],1]],i++ ];i];

%t a/@Range[68] (* _Ivan N. Ianakiev_, Dec 20 2021 *)

%Y Cf. A277972.

%K easy,nonn,word

%O 1,2

%A _Ivan N. Ianakiev_, Nov 07 2016

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 02:23 EDT 2024. Contains 371906 sequences. (Running on oeis4.)