[go: up one dir, main page]

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!)
A290227 Numbers n such that A290223(n) = 11. 0
8, 17, 26, 29, 35, 38, 47, 56, 65, 74, 83, 92, 149, 158, 167, 197 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
This sequence is believed to be finite. If it exists, a(17) > 10^5.
LINKS
EXAMPLE
26 is in this sequence because 26 - (2+6)^2 = -38. Then -38 + (3+8)^2 = 83. Then 83 - (8+3)^2 = -38, and so on.
PROG
(PARI)
a(n)=k=n; c=1; v=List(); listput(v, k); while(c, if(k>=0, k-=sumdigits(k)^2; c+=1; if(k==2||k==3||k==0||k==6||k==9, return(k)); if(vecsearch(Vec(v), k), return(sumdigits(abs(k)))); listput(v, k)); if(k<0, k+=sumdigits(-k)^2; c+=1; if(k==2||k==3||k==0||k==6||k==9, return(k)); if(vecsearch(Vec(v), k), return(sumdigits(abs(k)))); listput(v, k)); c+=1)
for(n=1, 10^5, if(a(n)==11, print1(n, ", ")))
CROSSREFS
Sequence in context: A041831 A041122 A042211 * A277052 A305496 A338090
KEYWORD
nonn,base,fini,full
AUTHOR
Derek Orr, Jul 24 2017
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 August 29 23:09 EDT 2024. Contains 375519 sequences. (Running on oeis4.)