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!)
A290984 First n-digit number to appear twice in a row in the decimal expansion of e. 2
6, 95, 427, 1828, 34619, 507629, 7342911, 21958718, 852480872 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
18281828 appears in e before any 1-digit, 2-digit, or 3-digit number appears twice in a row.
a(n) starts at positions 31, 49, 97, 2, 112869, 5005575, 1561314, 69682897, ... - Bobby Jacobs, Sep 05 2017
LINKS
EXAMPLE
a(1) = 6 because 6 is the first 1-digit number to appear twice in a row in the decimal expansion of e = 2.718281828459045235360287471352(66)...
MATHEMATICA
With[{s = Rest@ First@ RealDigits[N[E, 10^5]]}, Keys@ Merge[#, Identity] &@ Table[TakeSmallest[#, 1] &@ Sort[Map[#[[1, 1]] &, DeleteCases[#, {}]]] &@ Map[SequenceCases[#, {a_, b_} /; b == a + n] &, KeyMap[FromDigits, PositionIndex@ Partition[s, n, 1]]], {n, 4}]] (* Michael De Vlieger, Aug 16 2017 *)
(* or *)
s = First@ RealDigits[E, 10, 51*^5]; Table[p = Partition[s, k, 1]; FromDigits @@ p[[ Select[ Range[ Length@p - k], p[[#]] == p[[#+k]] &, 1]]], {k, 7}] (* much faster, Giovanni Resta, Sep 05 2017 *)
CROSSREFS
Sequence in context: A014378 A180260 A058465 * A338788 A326436 A243802
KEYWORD
base,more,nonn
AUTHOR
Bobby Jacobs, Aug 16 2017
EXTENSIONS
a(6)-a(8) from Giovanni Resta, Sep 05 2017
a(9) from Michael S. Branicky, Jan 20 2023
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 April 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)