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!)
A081535 Sum of row n of triangle in A081536. 3
1, 0, 6, 14, 15, 24, 28, 40, 45, 56, 66, 84, 91, 105, 120, 140, 153, 176, 190, 210, 231, 255, 276, 304, 325, 357, 378, 408, 435, 468, 496, 528, 561, 595, 630, 667, 703, 741, 780, 825, 861, 910, 946, 990, 1035, 1085, 1128, 1178, 1225, 1275, 1326, 1380, 1431 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
FORMULA
For n > 4, a(n) is the least number k >= n(n+1)/2 such that k - gpp(k) >= n(n-1)/2, where gpp(k) is the largest prime power dividing k. - Charlie Neder, Feb 03 2019
PROG
(PARI) a(n) = if(n<5, return([1, 0, 6, 14][n])); for(k=n*(n+1)/2, oo, if(k-if(1==k, k, my(f=factor(k)); vecmax(vector(#f[, 1], i, f[i, 1]^f[i, 2]))) >= n*(n-1)/2, return(k))); \\ Jinyuan Wang, May 03 2020
CROSSREFS
Sequence in context: A190272 A107982 A341448 * A355941 A359912 A325698
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Mar 28 2003
EXTENSIONS
Corrected and extended by David Wasserman, Jun 08 2004
Offset changed to 1 by Jinyuan Wang, May 02 2020
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 May 11 07:10 EDT 2024. Contains 372388 sequences. (Running on oeis4.)