The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A265899 After a(1) = 1, positions of descents in A265894. 5
1, 3, 6, 8, 11, 14, 17, 20, 24, 27, 31, 34, 38, 41, 45, 49, 53, 57, 61, 65, 69, 73, 77, 81, 85, 89, 94, 98, 102, 106, 111, 115, 120, 124, 128, 133, 137, 142, 146, 151, 156, 160, 165, 169, 174, 179, 184, 188, 193, 198, 202, 207, 212, 217, 222, 227, 231, 236, 241, 246, 251, 256, 261, 266, 271, 276, 281, 286, 291, 296, 301 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Numbers n for which A099563(A001813(n)) <= A099563(A001813(n-1)), where A001813(n) = (2n)! / n!, and A099563 gives the most significant digit in the factorial base representation (A007623) of n.
LINKS
PROG
(PARI)
A099563(n) = { my(i=2, dig=0); until(0==n, dig = n % i; n = (n - dig)/i; i++); return(dig); };
A265894 = n -> A099563((2*n)! / n!);
i=0; p=1; n=0; while(i < 5000, n++; k = A265894(n); if(k <= p, i++; write("b265899.txt", i, " ", n)); p = k; );
(Scheme, with Antti Karttunen's IntSeq-library)
(define A265899 (MATCHING-POS 1 1 (lambda (n) (<= (A265894 n) (A265894 (- n 1))))))
CROSSREFS
Cf. A265898 (a subsequence), A266119 (first differences), A266120 (terms immediately before descents).
Cf. also A031435.
Sequence in context: A022851 A325946 A050503 * A362882 A265898 A133869
KEYWORD
nonn
AUTHOR
Antti Karttunen, Dec 24 2015
STATUS
approved

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 June 11 17:08 EDT 2024. Contains 373315 sequences. (Running on oeis4.)