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!)
A249895 a(n+1) is next smallest square not divisible by 10 beginning with a(n), initial term is 5. 5

%I #13 Nov 17 2014 09:39:51

%S 5,529,529984,52998485796,5299848579629072273476,

%T 529984857962907227347600150092608188876380736

%N a(n+1) is next smallest square not divisible by 10 beginning with a(n), initial term is 5.

%H Hiroaki Yamanouchi, <a href="/A249895/b249895.txt">Table of n, a(n) for n = 1..10</a>

%o (PARI) a(n)=k=n; s=1; while(s<5*10^7, if(s%10, if(s^2\(10^(#Str(s^2)-#Str(k)))==k, print1(s^2, ", "); k=s^2)); s++)

%o a(5)

%o (Python)

%o def f(x):

%o ..print(x, end=', ')

%o ..n = x

%o ..s = 1

%o ..while s < 10**7:

%o ....if s % 10:

%o ......S = str(s**2)

%o ......if S.startswith(str(n)):

%o ........print(s**2, end=', ')

%o ........n = s**2

%o ....s += 1

%o f(5)

%Y Cf. A048559, A048561.

%K nonn,base

%O 1,1

%A _Derek Orr_, Nov 08 2014

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 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)