Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
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!)
Search: a264848 -id:a264848
Displaying 1-5 of 5 results found. page 1
     Sort: relevance | references | number | modified | created      Format: long | short | data
A261696 a(n) is least number > 0 such that the concatenation of a(1) ... a(n) is 17-gonal: (15n^2 - 13n)/2. +10
6
1, 7, 689, 6797, 67984832, 6798483348333332, 8455610150480042707742277762479, 707328322040172689545426423113211907561874137758547957769721082 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
From Chai Wah Wu, Mar 16 2018: (Start)
There are some interesting patterns observed in the terms. Terms a(5), a(6), a(9), a(10), a(11), a(12), ... share the same prefix of 6798483...
From terms a(n) for n > 5, there seems to a pattern of how they are constructed from previous terms. a(6) is formed by inserting 3483...3 between the penultimate digit and the last digit of a(5). Then a(7) and (8) do not follow this pattern.
The digits of a(9) and a(6) match until the last digit of a(6). Next, a(10), a(11) and (12) are formed from a(9), a(10) and a(11) resp. by inserting 3483...3. Then this pattern is interrupted by a(13) and a(14), and continue again for a(15) ..., etc.
(End)
LINKS
Wikipedia, Polygonal number
EXAMPLE
1, 17, 17689, 176896797 are 17-gonal.
PROG
(PARI) heptadecagonal(n)=ispolygonal(n, 17)
first(m)=my(s=""); s="1"; print1(1, ", "); for(i=2, m, n=1; while(!heptadecagonal(eval(concat(s, Str(n)))), n++); print1(n, ", "); s=concat(s, Str(n)))
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Anders Hellström, Nov 26 2015
EXTENSIONS
a(6)-a(8) from Chai Wah Wu, Mar 16 2018
STATUS
approved
A264733 a(n) is the smallest number > 1 such that the concatenation a(1)a(2)...a(n) is a perfect power. +10
6
4, 9, 13, 31556, 4433200001, 7330164793357114944, 364233003001227343654904892703798707409, 30558883460500823396683989630832748682356643682219859233661160618544138815441 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
Amarnath Murthy, Exploring some new ideas on Smarandache type sets, functions and sequences, Smarandache Notions Journal Vol. 11 N. 1-2-3 Spring 2000. p. 172 (breakup sequences).
MAPLE
a[1]:= 4: C:= 4:
for n from 2 to 9 do
looking:= true;
for d from 1 while looking do
L:= 10^d*C + 10^(d-1);
U:= 10^d*C + 10^d - 1;
p:= 1;
while p < ilog2(U) do
p:= nextprime(p);
Lp:= ceil(L^(1/p));
Up:= floor(U^(1/p));
while not (Lp::integer and Up::integer) do
Digits:= 2*Digits;
Lp:= eval(Lp);
Up:= eval(Up);
od;
if Lp <= Up then
Cp:= Lp^p;
a[n]:= Cp - 10^d*C;
C:= Cp;
looking:= false;
break
fi
od
od
od:
seq(a[i], i=1..9); # Robert Israel, Nov 27 2015
MATHEMATICA
a = {}; Do[k = 2; While[! Or[# == 1, GCD @@ FactorInteger[#][[All, -1]] > 1] &@ FromDigits@ Flatten@ Join[#, IntegerDigits@ k], k++] &@ Map[IntegerDigits, a]; AppendTo[a, k], {i, 4}]; a (* Michael De Vlieger, Jan 23 2017 *)
PROG
(PARI) first(m)=my(s="4"); print1(4, ", "); for(i=2, m, n=1; while(!ispower(eval(concat(s, Str(n)))), n++); print1(n, ", "); s=concat(s, Str(n)))
CROSSREFS
KEYWORD
nonn,base,hard
AUTHOR
Anders Hellström, Nov 22 2015
EXTENSIONS
a(5)-a(8) from Jon E. Schoenfield, Nov 22 2015
STATUS
approved
A264804 a(n) is least number > 0 such that the concatenation of a(1) ... a(n) is 11-gonal: (9n^2 - 7n)/2. +10
6
1, 1, 526, 64095, 21420730041, 4528059468080555555556, 3834345160635370971474665069772601398563211, 100751687713984558500838936986634939491022212000570658953744730444103042117925197608458 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
Wikipedia, Polygonal number
PROG
(PARI) hendecagonal(n)=ispolygonal(n, 11)
first(m)=my(v=vector(m), s=""); s="1"; print1(1, ", "); for(i=2, m, n=1; while(!hendecagonal(eval(concat(s, Str(n)))), n++); print1(n, ", "); s=concat(s, Str(n)))
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Anders Hellström, Nov 25 2015
EXTENSIONS
a(5)-a(8) from Chai Wah Wu, Mar 16 2018
STATUS
approved
A264842 a(n) is least number > 0 such that the concatenation of a(1) ... a(n) is 13-gonal: (11n^2 - 9n)/2. +10
6
1, 3, 36, 54765, 123152388, 374848814886363636, 85794018663817263665487289502938826, 107072047880615405294526336549204869795454545454545454545454545454545466 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
Jon E. Schoenfield, Table of n, a(n) for n = 1..11
Wikipedia, Polygonal number
EXAMPLE
1, 13, 1336, 133654765 are 13-gonal.
PROG
(PARI) tridecagonal(n)=ispolygonal(n, 13)
first(m)=my(s=""); s="1"; print1(1, ", "); for(i=2, m, n=1; while(!tridecagonal(eval(concat(s, Str(n)))), n++); print1(n, ", "); s=concat(s, Str(n)))
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Anders Hellström, Nov 26 2015
EXTENSIONS
More terms from Jon E. Schoenfield, Nov 27 2015
STATUS
approved
A264849 a(n) is least number > 0 such that the concatenation of a(1) ... a(n) is 23-gonal: (21n^2 - 19n)/2. +10
6
1, 30, 648, 6701456, 72020220595275, 970458695858595792221157266, 3377345920936319088412440649783459968197698452784332095, 7477788200541027929765479736500643733301085903714718188060185368351929896324223859775571543015918781111399506 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
Wikipedia, Polygonal number
EXAMPLE
1, 130, 130648 are 23-gonal.
PROG
(PARI) icositrigonal(n)=ispolygonal(n, 23)
first(m)=my(s=""); s="1"; print1(1, ", "); for(i=2, m, n=1; while(!icositrigonal(eval(concat(s, Str(n)))), n++); print1(n, ", "); s=concat(s, Str(n)))
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Anders Hellström, Nov 26 2015
EXTENSIONS
a(5)-a(8) from Chai Wah Wu, Mar 15 2018
STATUS
approved
page 1

Search completed in 0.007 seconds

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 August 18 20:50 EDT 2024. Contains 375284 sequences. (Running on oeis4.)